Skip to content

Commit

Permalink
ci: drop nodejs <= 18 from test matrix
Browse files Browse the repository at this point in the history
  • Loading branch information
antongolub committed Jun 24, 2023
1 parent 6e4c378 commit 11851fb
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ jobs:

- uses: actions/setup-node@v3
with:
node-version: 16
node-version: 18
- run: yarn

- name: Unit test only
Expand Down Expand Up @@ -43,7 +43,7 @@ jobs:
strategy:
matrix:
os: [ ubuntu-22.04 ]
node-version: [ 14, 16, 20 ]
node-version: [ 18, 20 ]
name: Test (Node v${{ matrix.node-version }}, OS ${{ matrix.os }})
runs-on: ${{ matrix.os }}
steps:
Expand All @@ -54,9 +54,9 @@ jobs:
node-version: ${{ matrix.node-version }}
- run: yarn
- name: Test only
if: matrix.node-version != '16' || matrix.os != 'ubuntu-22.04'
if: matrix.node-version != '18' || matrix.os != 'ubuntu-22.04'
run: yarn test

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

0 comments on commit 11851fb

Please sign in to comment.