Skip to content

Commit

Permalink
Add npm test to workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
satyamkale27 committed Oct 27, 2024
1 parent 6131b59 commit 61829e7
Showing 1 changed file with 8 additions and 2 deletions.
10 changes: 8 additions & 2 deletions .github/workflows/node.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,11 +7,17 @@ on:
jobs:
build:
runs-on: ubuntu-latest
env:
CI: true
strategy:
matrix:
node-version: [16.x]
steps:
- uses: actions/checkout@v2
- name: Use Node.js version 23
- name: Use Node.js version ${{ matrix.node-version }}
uses: actions/setup-node@v2
with:
node-version: "23"
node-version: ${{ matrix.node-version }}
- run: npm install
- run: npm run build --prefix client
- run: npm test

0 comments on commit 61829e7

Please sign in to comment.