Skip to content

Commit

Permalink
ditch the Node matrix in CI (#409)
Browse files Browse the repository at this point in the history
  • Loading branch information
bartveneman authored Jul 12, 2024
1 parent 14bcc29 commit d8d6b1b
Showing 1 changed file with 2 additions and 13 deletions.
15 changes: 2 additions & 13 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,21 +22,11 @@ jobs:
test:
name: Unit tests
runs-on: ubuntu-latest

strategy:
matrix:
node-version:
- 14.13.0
- 16
- 18
- 20

steps:
- uses: actions/checkout@v4
- name: Use Node.js ${{ matrix.node-version }}
- name: Use Node.js
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
cache: "npm"
- run: npm install --ignore-scripts --no-audit --no-fund
- run: npm test
Expand All @@ -47,10 +37,9 @@ jobs:
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Use Node.js ${{ matrix.node-version }}
- name: Use Node.js
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
cache: "npm"
- run: npm install --ignore-scripts --no-audit --no-fund
- name: Build package
Expand Down

0 comments on commit d8d6b1b

Please sign in to comment.