Skip to content

Commit c2cee43

Browse files
committed
ci: drop Node v12 from matrix
Why though? Because Node v12 will soon be EOL'd once 16 becomes the stable LTS next month and testing only 2 versions in our matrix will help ease the pain (at least temporarily) caused by the docker hub rate limits. Also upgraded the versions for 14 and 16 to the latest as of 2021-09-22 Also set the max parallel to 2 in order to closer match reallity instead of 1024 which if we actually used the dockerhub rate limits would fail all the tests anyway. Signed-off-by: Peter Somogyvari <[email protected]>
1 parent a298592 commit c2cee43

File tree

1 file changed

+3
-4
lines changed

1 file changed

+3
-4
lines changed

.github/workflows/ci.yml

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -11,15 +11,14 @@ on:
1111
jobs:
1212
build:
1313
runs-on: ${{ matrix.os }}
14-
continue-on-error: ${{ matrix.experimental }}
14+
continue-on-error: false
1515

1616
strategy:
1717
fail-fast: false
18-
max-parallel: 1024
18+
max-parallel: 2
1919
matrix:
2020
os: [ubuntu-20.04]
21-
node-version: [v12.22.3, v14.15.1, v16.2.0]
22-
experimental: [false]
21+
node-version: [v14.17.6, v16.9.1]
2322

2423
steps:
2524
- name: Set Swap Space to 10GB

0 commit comments

Comments
 (0)