Skip to content

Commit

Permalink
chore!: Dropped support for Node 12 (#68)
Browse files Browse the repository at this point in the history
BREAKING CHANGE: Dropped Node12 support
  • Loading branch information
Jawayria authored May 16, 2022
1 parent bfd42bc commit 2bf4297
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
node: [12, 14, 16]
node: [16]
steps:
- name: Checkout
uses: actions/checkout@v2
Expand Down
9 changes: 7 additions & 2 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,10 +10,15 @@ jobs:
steps:
- name: Checkout
uses: actions/checkout@v2

- name: Setup Node.js Env
run: echo "NODE_VER='cat .nvmrc'" >> $GITHUB_ENV

- name: Setup Node.js
uses: actions/setup-node@v1
uses: actions/setup-node@v2
with:
node-version: 12
node-version: "${{ env.NODE_VER }}"

- name: Install dependencies
run: npm ci
- name: Test
Expand Down
2 changes: 1 addition & 1 deletion .nvmrc
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
12.10.0
16.14.2

0 comments on commit 2bf4297

Please sign in to comment.