Skip to content

Commit 11851fb

Browse files
committed
ci: drop nodejs <= 18 from test matrix
1 parent 6e4c378 commit 11851fb

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

.github/workflows/ci.yaml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ jobs:
1111

1212
- uses: actions/setup-node@v3
1313
with:
14-
node-version: 16
14+
node-version: 18
1515
- run: yarn
1616

1717
- name: Unit test only
@@ -43,7 +43,7 @@ jobs:
4343
strategy:
4444
matrix:
4545
os: [ ubuntu-22.04 ]
46-
node-version: [ 14, 16, 20 ]
46+
node-version: [ 18, 20 ]
4747
name: Test (Node v${{ matrix.node-version }}, OS ${{ matrix.os }})
4848
runs-on: ${{ matrix.os }}
4949
steps:
@@ -54,9 +54,9 @@ jobs:
5454
node-version: ${{ matrix.node-version }}
5555
- run: yarn
5656
- name: Test only
57-
if: matrix.node-version != '16' || matrix.os != 'ubuntu-22.04'
57+
if: matrix.node-version != '18' || matrix.os != 'ubuntu-22.04'
5858
run: yarn test
5959

6060
- name: Test & push coverage
61-
if: matrix.node-version == '16' && matrix.os == 'ubuntu-22.04'
61+
if: matrix.node-version == '18' && matrix.os == 'ubuntu-22.04'
6262
run: yarn test

0 commit comments

Comments
 (0)