Attempt to fix handbook actions

clearly running cd prior to setting up node doesnt work
This commit is contained in:
KingRainbow44 2023-04-06 04:56:39 -04:00
parent 12898f6228
commit 314c8771da
No known key found for this signature in database
GPG Key ID: FC2CB64B00D257BE

View File

@ -36,8 +36,10 @@ jobs:
restore-keys: |
${{ runner.os }}-node-
- name: Install dependencies
working-directory: src/handbook
run: npm install
- name: Run linter
working-directory: src/handbook
run: npm run lint
- run: git config --global user.name "github-actions"
@ -54,7 +56,6 @@ jobs:
steps:
- name: Checkout
uses: actions/checkout@v3
- run: cd src/handbook
- name: Setup Node
uses: actions/setup-node@v2
with:
@ -69,9 +70,11 @@ jobs:
restore-keys: |
${{ runner.os }}-node-
- name: Install dependencies
working-directory: src/handbook
run: npm install
- name: Build handbook
run: npm run build
working-directory: src/handbook
run: cd src/handbook && npm run build
- name: Upload build
uses: actions/upload-artifact@v3
with: