Skip to content

Commit

Permalink
Merge pull request #235 from nschonni/update-node-matrix
Browse files Browse the repository at this point in the history
ci: Add current Node versions to matrix build
  • Loading branch information
tcort authored Mar 9, 2023
2 parents ed9b6a4 + 428fac8 commit e369d7e
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,14 +8,19 @@ jobs:
strategy:
fail-fast: false
matrix:
node-version: [14.x, 16.x]
node-version:
- 14
- 16
- 18
- 19

steps:
- uses: actions/checkout@v3
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
cache: npm

- run: npm ci
- run: npm test

0 comments on commit e369d7e

Please sign in to comment.