Skip to content

Commit

Permalink
ci(node): removed node 12 support, test on 19
Browse files Browse the repository at this point in the history
BREAKING CHANGE: dropped node 12 support
  • Loading branch information
grantila committed Feb 2, 2023
1 parent 12141ab commit 952b324
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/branches.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,10 +16,10 @@ jobs:
strategy:
matrix:
node-version:
- 12.x
- 14.x
- 16.x
- 18.x
- 19.x
steps:
- uses: actions/checkout@v2
- name: Use Node.js ${{ matrix.node-version }}
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/master.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,10 +15,10 @@ jobs:
strategy:
matrix:
node-version:
- 12.x
- 14.x
- 16.x
- 18.x
- 19.x
steps:
- uses: actions/checkout@v2
- name: Use Node.js ${{ matrix.node-version }}
Expand All @@ -41,7 +41,7 @@ jobs:
- name: Setup Node.js
uses: actions/setup-node@v1
with:
node-version: 16
node-version: 18
- run: yarn
- run: yarn build
- run: yarn test
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
"types": "./dist/index.d.ts",
"directories": {},
"engines": {
"node": ">=12"
"node": ">=14"
},
"files": [
"dist"
Expand Down

0 comments on commit 952b324

Please sign in to comment.