Skip to content

Commit

Permalink
ci: remove node 12 due to semantic-release requirements
Browse files Browse the repository at this point in the history
  • Loading branch information
nodkz committed Dec 18, 2021
1 parent d7831f4 commit b640824
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/nodejs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [12.x, 14.x, 16.x]
node-version: [14.x, 16.x]
steps:
- uses: actions/checkout@v2
- name: Use Node.js ${{ matrix.node-version }}
Expand All @@ -28,7 +28,7 @@ jobs:
env:
CI: true
- name: Send codecov.io stats
if: matrix.node-version == '12.x'
if: matrix.node-version == '14.x'
run: bash <(curl -s https://codecov.io/bash) || echo ''

publish:
Expand All @@ -37,10 +37,10 @@ jobs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Use Node.js 12
- name: Use Node.js 14
uses: actions/setup-node@v1
with:
node-version: 12.x
node-version: 14.x
- name: Install node_modules
run: yarn install
- name: Build
Expand Down

0 comments on commit b640824

Please sign in to comment.