Skip to content

Commit

Permalink
Refresh CI for nodejs
Browse files Browse the repository at this point in the history
New nodejs versions
New action versions
Use npm ci
  • Loading branch information
martinthomson committed Jan 8, 2024
1 parent 9d00a51 commit 29d7dfc
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/node.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,13 +21,13 @@ jobs:

strategy:
matrix:
node-version: [12, 14, 16, 18]
node-version: [16, 18, 20]

steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v4
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v3
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
- run: cd nodejs; npm install
- run: cd nodejs; npm ci
- run: cd nodejs; node test.js dump verbose

0 comments on commit 29d7dfc

Please sign in to comment.