mirror of
https://github.com/bdunderscore/modular-avatar.git
synced 2025-03-06 22:04:55 +08:00
20 lines
373 B
YAML
20 lines
373 B
YAML
|
name: Test documentation
|
||
|
|
||
|
on:
|
||
|
pull_request:
|
||
|
|
||
|
jobs:
|
||
|
build-listing:
|
||
|
name: build-listing
|
||
|
runs-on: ubuntu-latest
|
||
|
steps:
|
||
|
- uses: actions/setup-node@v3
|
||
|
with:
|
||
|
node-version: 18
|
||
|
- uses: actions/checkout@v3 # check out this repo
|
||
|
|
||
|
- name: Build docs
|
||
|
run: |
|
||
|
cd docs
|
||
|
npm install
|
||
|
npm run build
|