Skip to content

Commit

Permalink
Update Node.js version for CI
Browse files Browse the repository at this point in the history
  • Loading branch information
lutzhelm committed Dec 4, 2024
1 parent 9556d01 commit 1877252
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions .github/workflows/node.js.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,13 +12,16 @@ on:
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [18.x, 20.x, 22.x]

steps:
- uses: actions/checkout@v2
- name: Use Node.js 14.x
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v1
with:
node-version: 14.x
node-version: ${{ matrix.node-version }}
- run: npm install -g codecov
- run: npm install
- run: npm test
Expand Down

0 comments on commit 1877252

Please sign in to comment.