Skip to content

Commit

Permalink
ci: Drop testing on EOL Node.js versions
Browse files Browse the repository at this point in the history
  • Loading branch information
eemeli committed Apr 26, 2024
1 parent ea1fae2 commit a43475b
Showing 1 changed file with 3 additions and 7 deletions.
10 changes: 3 additions & 7 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,18 +12,14 @@ jobs:

strategy:
matrix:
node-version: [12, 14, 16, 18, latest]
node-version: [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 }}
- if: matrix.node-version <= 14
run: npm install --global npm@7
- run: npm ci
- if: matrix.node-version == 12
run: npm install mocha@9
- run: npm run build
- run: npm test

0 comments on commit a43475b

Please sign in to comment.