Skip to content

Commit 1fbc17f

Browse files
committed
Do not run tests on node 14
1 parent 438248a commit 1fbc17f

File tree

1 file changed

+1
-10
lines changed

1 file changed

+1
-10
lines changed

.github/workflows/test.yml

Lines changed: 1 addition & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ jobs:
1010
strategy:
1111
fail-fast: false
1212
matrix:
13-
node-version: [14, 16, 18, 20]
13+
node-version: [16, 18, 20]
1414

1515
steps:
1616
- name: Clone repository
@@ -22,21 +22,12 @@ jobs:
2222
node-version: ${{ matrix.node-version }}
2323
cache: 'npm'
2424

25-
- name: Update npm
26-
if: ${{ matrix.node-version == 14 }}
27-
run: npm install -g npm@latest
28-
2925
- name: Install dependencies
3026
run: npm ci
3127

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

36-
- name: Run tests
37-
if: ${{ matrix.node-version == 14 }}
38-
run: npm run coverage -- -- -n--experimental-abortcontroller
39-
4031
- name: Coveralls
4132
uses: coverallsapp/github-action@v2
4233
with:

0 commit comments

Comments
 (0)