Skip to content

Commit

Permalink
Do not run tests on node 14
Browse files Browse the repository at this point in the history
  • Loading branch information
fbbdev committed Jul 15, 2023
1 parent 438248a commit 1fbc17f
Showing 1 changed file with 1 addition and 10 deletions.
11 changes: 1 addition & 10 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ jobs:
strategy:
fail-fast: false
matrix:
node-version: [14, 16, 18, 20]
node-version: [16, 18, 20]

steps:
- name: Clone repository
Expand All @@ -22,21 +22,12 @@ jobs:
node-version: ${{ matrix.node-version }}
cache: 'npm'

- name: Update npm
if: ${{ matrix.node-version == 14 }}
run: npm install -g npm@latest

- name: Install dependencies
run: npm ci

- name: Run tests
if: ${{ matrix.node-version > 14 }}
run: npm run coverage

- name: Run tests
if: ${{ matrix.node-version == 14 }}
run: npm run coverage -- -- -n--experimental-abortcontroller

- name: Coveralls
uses: coverallsapp/github-action@v2
with:
Expand Down

0 comments on commit 1fbc17f

Please sign in to comment.