Skip to content

Commit 5af4a17

Browse files
committed
fix
1 parent fbe6cd5 commit 5af4a17

File tree

1 file changed

+5
-3
lines changed

1 file changed

+5
-3
lines changed

.github/workflows/docs-check.yaml

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,9 @@ on:
2323
jobs:
2424
test-deploy:
2525
runs-on: ubuntu-latest
26+
defaults:
27+
run:
28+
working-directory: ./website
2629
steps:
2730
- uses: actions/checkout@v4
2831
with:
@@ -31,9 +34,8 @@ jobs:
3134
with:
3235
node-version: 18
3336
cache: npm
37+
cache-dependency-path: '**/package-lock.json'
3438
- name: Install dependencies
35-
working-directory: ./website
3639
run: npm ci
3740
- name: Test build website
38-
working-directory: ./website
39-
run: npm run build -- --no-minify
41+
run: npm run build -- --no-minify

0 commit comments

Comments
 (0)