Skip to content

Commit

Permalink
test: drop Node.js v12
Browse files Browse the repository at this point in the history
  • Loading branch information
antongolub committed Sep 27, 2021
1 parent 98764de commit 145655d
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions .github/workflows/ci.yaml
Expand Up @@ -28,7 +28,7 @@ jobs:
fetch-depth: 0
- uses: actions/setup-node@v2
with:
node-version: 14
node-version: 16
- name: Install deps
run: |
yarn --ignore-engines
Expand Down Expand Up @@ -63,7 +63,7 @@ jobs:
name: target
- uses: actions/setup-node@v2
with:
node-version: 14
node-version: 16
- name: Install deps
run: |
yarn --ignore-engines
Expand All @@ -86,7 +86,7 @@ jobs:
strategy:
matrix:
os: [ ubuntu-20.04 ]
node-version: [ 12, 14, 15 ]
node-version: [ 14, 16 ]
name: Test (Node v${{ matrix.node-version }}, OS ${{ matrix.os }})
runs-on: ${{ matrix.os }}
steps:
Expand All @@ -106,10 +106,10 @@ jobs:
yarn --ignore-engines
yarn bootstrap
- name: Unit test only
if: matrix.node-version != '14' || matrix.os != 'ubuntu-20.04'
if: matrix.node-version != '16' || matrix.os != 'ubuntu-20.04'
run: yarn test:unit
- name: Full test
if: matrix.node-version == '14' && matrix.os == 'ubuntu-20.04'
if: matrix.node-version == '16' && matrix.os == 'ubuntu-20.04'
run: yarn test

release:
Expand All @@ -129,7 +129,7 @@ jobs:
name: target
- uses: actions/setup-node@v2
with:
node-version: 14
node-version: 16

- name: Codeclimate
uses: paambaati/codeclimate-action@v2.7.5
Expand Down

0 comments on commit 145655d

Please sign in to comment.