Skip to content

Commit 6c40edc

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

File tree

5 files changed

+12
-12
lines changed

5 files changed

+12
-12
lines changed

.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

.github/workflows/fetch.yml

+3-8
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
@@ -78,7 +73,7 @@ jobs:
7873
# upload coverage only once
7974
- name: Coveralls
8075
uses: coverallsapp/github-action@master
81-
if: matrix.node == '14' && matrix.os == 'ubuntu-latest'
76+
if: matrix.node-version == '16' && matrix.os == 'ubuntu-latest'
8277
with:
8378
github-token: ${{ secrets.GITHUB_TOKEN }}
8479

.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

.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

.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)