Skip to content

Commit

Permalink
Revert "ci: Drop tests in EOL Node.js versions"
Browse files Browse the repository at this point in the history
This reverts commit 5410c25.
  • Loading branch information
eemeli committed Jan 2, 2025
1 parent 3b2362a commit 9c07c7a
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion .github/workflows/nodejs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:
strategy:
matrix:
os: [ubuntu-latest, windows-latest, macos-latest]
node-version: [18, 20, latest]
node-version: [14, 16, 20, latest]

steps:
- uses: actions/checkout@v4
Expand All @@ -23,7 +23,11 @@ jobs:
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
- if: matrix.node-version == 14
run: npm install --global npm@7
- run: npm ci
- if: matrix.node-version < 18
run: npm install --no-save rollup@3
- run: npm test
- run: npm run test:dist

Expand Down

0 comments on commit 9c07c7a

Please sign in to comment.