Skip to content

Commit e55e8cf

Browse files
committed
fix(CI): stop testing on Node 14
1 parent 73877fc commit e55e8cf

File tree

5 files changed

+11
-18
lines changed

5 files changed

+11
-18
lines changed

Diff for: .github/workflows/blob.yml

+2-1
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,7 @@ jobs:
1717
name: Typecheck
1818
runs-on: ubuntu-latest
1919
strategy:
20+
fail-fast: false
2021
matrix:
2122
node-version:
2223
- 16
@@ -42,9 +43,9 @@ jobs:
4243
runs-on: ${{ matrix.os }}
4344

4445
strategy:
46+
fail-fast: false
4547
matrix:
4648
node-version:
47-
- 14
4849
- 16
4950
os:
5051
- ubuntu-latest

Diff for: .github/workflows/fetch.yml

+2-14
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,7 @@ jobs:
1818
name: Typecheck
1919
runs-on: ubuntu-latest
2020
strategy:
21+
fail-fast: false
2122
matrix:
2223
node-version:
2324
- 16
@@ -44,22 +45,16 @@ jobs:
4445
runs-on: ${{ matrix.os }}
4546

4647
strategy:
48+
fail-fast: false
4749
matrix:
4850
node-version:
49-
- 14
5051
- 16
5152
os:
5253
- ubuntu-latest
5354
- windows-latest
5455
- macos-latest
5556
project:
5657
- fetch
57-
exclude:
58-
- os: windows-latest
59-
node-version: 14
60-
# On macOS, run tests with only the LTS environments.
61-
- os: macos-latest
62-
node-version: 14
6358

6459
steps:
6560
- uses: actions/checkout@v2
@@ -75,12 +70,5 @@ jobs:
7570
- name: Test (ESM)
7671
run: yarn --cwd packages/${{matrix.project}} test -- --colors
7772

78-
# upload coverage only once
79-
- name: Coveralls
80-
uses: coverallsapp/github-action@master
81-
if: matrix.node == '14' && matrix.os == 'ubuntu-latest'
82-
with:
83-
github-token: ${{ secrets.GITHUB_TOKEN }}
84-
8573
- name: Test (CJS)
8674
run: yarn --cwd packages/${{matrix.project}} test:cjs

Diff for: .github/workflows/file.yml

+2-1
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,7 @@ jobs:
1717
name: Typecheck
1818
runs-on: ubuntu-latest
1919
strategy:
20+
fail-fast: false
2021
matrix:
2122
node-version:
2223
- 16
@@ -42,9 +43,9 @@ jobs:
4243
runs-on: ${{ matrix.os }}
4344

4445
strategy:
46+
fail-fast: false
4547
matrix:
4648
node-version:
47-
- 14
4849
- 16
4950
os:
5051
- ubuntu-latest

Diff for: .github/workflows/form-data.yml

+2-1
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,7 @@ jobs:
1818
name: Typecheck
1919
runs-on: ubuntu-latest
2020
strategy:
21+
fail-fast: false
2122
matrix:
2223
node-version:
2324
- 16
@@ -43,9 +44,9 @@ jobs:
4344
runs-on: ${{ matrix.os }}
4445

4546
strategy:
47+
fail-fast: false
4648
matrix:
4749
node-version:
48-
- 14
4950
- 16
5051
os:
5152
- ubuntu-latest

Diff for: .github/workflows/stream.yml

+3-1
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,7 @@ jobs:
1717
name: Typecheck
1818
runs-on: ubuntu-latest
1919
strategy:
20+
fail-fast: false
2021
matrix:
2122
node-version:
2223
- 16
@@ -43,9 +44,9 @@ jobs:
4344
runs-on: ${{ matrix.os }}
4445

4546
strategy:
47+
fail-fast: false
4648
matrix:
4749
node-version:
48-
- 14
4950
- 16
5051
os:
5152
- ubuntu-latest
@@ -76,6 +77,7 @@ jobs:
7677
runs-on: ubuntu-latest
7778

7879
strategy:
80+
fail-fast: false
7981
matrix:
8082
node-version:
8183
- 16

0 commit comments

Comments
 (0)