We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 438248a commit 1fbc17fCopy full SHA for 1fbc17f
.github/workflows/test.yml
@@ -10,7 +10,7 @@ jobs:
10
strategy:
11
fail-fast: false
12
matrix:
13
- node-version: [14, 16, 18, 20]
+ node-version: [16, 18, 20]
14
15
steps:
16
- name: Clone repository
@@ -22,21 +22,12 @@ jobs:
22
node-version: ${{ matrix.node-version }}
23
cache: 'npm'
24
25
- - name: Update npm
26
- if: ${{ matrix.node-version == 14 }}
27
- run: npm install -g npm@latest
28
-
29
- name: Install dependencies
30
run: npm ci
31
32
- name: Run tests
33
- if: ${{ matrix.node-version > 14 }}
34
run: npm run coverage
35
36
- - name: Run tests
37
38
- run: npm run coverage -- -- -n--experimental-abortcontroller
39
40
- name: Coveralls
41
uses: coverallsapp/github-action@v2
42
with:
0 commit comments