Skip to content

Commit

Permalink
ci: fix
Browse files Browse the repository at this point in the history
  • Loading branch information
srdtrk committed May 15, 2024
1 parent 5aa8922 commit b1581fe
Showing 1 changed file with 5 additions and 3 deletions.
8 changes: 5 additions & 3 deletions .github/workflows/check-docs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,8 @@ on:
branches:
- main
paths:
- './docs'
- 'docs/**'
- '.github/workflows/check-docs.yml'

jobs:
check-docs-build:
Expand All @@ -20,8 +21,9 @@ jobs:
with:
node-version: 18
cache: npm
cache-dependency-path: docs/package-lock.json

- name: Install dependencies
run: npm ci
run: cd docs && npm ci
- name: Test build website
run: npm run build
run: cd docs && npm run build

0 comments on commit b1581fe

Please sign in to comment.