Skip to content

Commit

Permalink
Update the github workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
emilos committed May 14, 2024
1 parent 4963cde commit 6237d33
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions .github/workflows/nodejs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,17 +8,17 @@ jobs:

strategy:
matrix:
node-version: [20.11.1]
version: [20.13.1]

steps:
- uses: actions/checkout@v1
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v1
- uses: actions/checkout@v4
- name: Use Node.js ${{ matrix.version }}
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
node-version: ${{ matrix.version }}
- name: npm install, build, and test
run: |
npm ci
npm test
npm run test:debug
env:
CI: true

0 comments on commit 6237d33

Please sign in to comment.