Skip to content

Commit

Permalink
Remove Node.js v12 support
Browse files Browse the repository at this point in the history
  • Loading branch information
eartharoid committed Nov 1, 2022
1 parent 0679c92 commit 903fe9b
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/npm-publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
node: [ '12', '14', '16' ]
node: [ '14', '16', '18' ]
name: Node v${{ matrix.node }} test
steps:
- uses: actions/checkout@v2
Expand All @@ -30,7 +30,7 @@ jobs:
- uses: actions/checkout@v2
- uses: actions/setup-node@v2
with:
node-version: '16'
node-version: '18'
registry-url: https://registry.npmjs.org/
- uses: jaid/[email protected]
- run: npm run build
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/npm-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
node: [ '12', '14', '16' ]
node: [ '14', '16', '18' ]
name: Node v${{ matrix.node }} test
steps:
- uses: actions/checkout@v2
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
"types/"
],
"engines": {
"node": ">=12"
"node": ">=14"
},
"scripts": {
"build": "del-cli ./dist && tsc",
Expand Down

0 comments on commit 903fe9b

Please sign in to comment.