Skip to content

Commit

Permalink
Node – nasa-project, added npm test to workflow (fixed)
Browse files Browse the repository at this point in the history
  • Loading branch information
art2url committed Nov 13, 2024
1 parent 7da898e commit 4dff777
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions .github/workflows/node.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,14 +9,15 @@ jobs:
env:
CI: true
strategy:
matrix: node-version:[14.x, 16.x, 20.x]
matrix:
node-version: [14.x, 16.x, 20.x]
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Use Node.js version ${{matrix.node-version}}
- name: Use Node.js version ${{ matrix.node-version }}
uses: actions/setup-node@v3
with:
node-version: ${{matrix.node-version}}
node-version: ${{ matrix.node-version }}
- run: npm install
- run: npm run build --prefix client
- run: npm test

0 comments on commit 4dff777

Please sign in to comment.