Skip to content

Commit

Permalink
feat!: require node.js 16 and up (#550)
Browse files Browse the repository at this point in the history
  • Loading branch information
JustinBeckwith committed May 30, 2023
1 parent 1a58441 commit 4310692
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/ci.yaml
Expand Up @@ -6,14 +6,14 @@ on:
name: ci
env:
FORCE_COLOR: 2
NODE: 16
NODE: 18
jobs:
test:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
node: [14, 16, 18]
node: [16, 18, 20]
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
Expand Down Expand Up @@ -67,8 +67,8 @@ jobs:
cache: npm
- run: npm ci
- run: npm run compile
# disabed due to https://github.com/vercel/pkg/issues/1291
# - run: npm run build-binaries
# disabed due to https://github.com/vercel/pkg/issues/1291
# - run: npm run build-binaries
- run: npx semantic-release
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
Expand Down
2 changes: 1 addition & 1 deletion package.json
Expand Up @@ -55,7 +55,7 @@
"typescript": "^5.0.0"
},
"engines": {
"node": ">=14"
"node": ">=16"
},
"files": [
"build/src"
Expand Down

0 comments on commit 4310692

Please sign in to comment.