Skip to content

Commit

Permalink
chore!: support Node v16+
Browse files Browse the repository at this point in the history
  • Loading branch information
teppeis committed Jul 25, 2022
1 parent 5489a62 commit 6017f4e
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/lint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ jobs:
- name: Setup Node.js
uses: actions/setup-node@v2
with:
node-version: "14"
node-version: "16"
cache: "npm"

- name: Install dependencies
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:

strategy:
matrix:
node-version: [12.x, 14.x, 16.x]
node-version: [16.x, 18.x]

steps:
- uses: actions/checkout@v2
Expand Down Expand Up @@ -42,7 +42,7 @@ jobs:
npm i --no-save google-closure-library@20180910
npm run build:ci
- name: Report coverage to codecov
if: matrix.node-version == '12.x'
if: matrix.node-version == '16.x'
env:
CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }}
run: npx codecov
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
"access": "public"
},
"engines": {
"node": ">=12"
"node": ">=16"
},
"main": "lib/compiler.js",
"types": "lib/compiler.d.ts",
Expand Down

0 comments on commit 6017f4e

Please sign in to comment.