Skip to content

Commit

Permalink
Update node.js.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
decadez authored Jul 10, 2024
1 parent 7a90a07 commit 003ecf2
Showing 1 changed file with 9 additions and 4 deletions.
13 changes: 9 additions & 4 deletions .github/workflows/node.js.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,12 @@ jobs:
with:
node-version: ${{ matrix.node-version }}
cache: 'npm'
- run: cd website-main
- run: npm ci
- run: npm run build --if-present
- run: npm test
- name: Install dependencies and build it
run: |
cd website-main
npm ci
npm run build --if-present
- name: Run tests
run: |
cd website-main
npm test

0 comments on commit 003ecf2

Please sign in to comment.