Skip to content

Commit

Permalink
fix node versions
Browse files Browse the repository at this point in the history
  • Loading branch information
murat-dogan committed Nov 24, 2024
1 parent 310b798 commit b111035
Show file tree
Hide file tree
Showing 6 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/build-linux.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:
runs-on: ubuntu-20.04
strategy:
matrix:
node-version: [16]
node-version: [18]
arch: [amd64, arm64, arm]
platform: [debian, alpine]
include:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/build-mac-m1.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ jobs:
runs-on: macos-13
strategy:
matrix:
node-version: [16.x]
node-version: [18]

steps:
- uses: actions/checkout@v4
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/build-mac-x64.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:
runs-on: macos-13
strategy:
matrix:
node-version: [16.x]
node-version: [18]

steps:
- uses: actions/checkout@v4
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/build-win.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:
runs-on: windows-2019
strategy:
matrix:
node-version: [16.x]
node-version: [18]

steps:
- uses: actions/checkout@v4
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/lint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:
- name: Use Node.js
uses: actions/setup-node@v3
with:
node-version: '16.x'
node-version: '18'
- run: npm ci
- run: npm run lint
- run: npm run test-types
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
}
},
"engines": {
"node": ">=16.0.0"
"node": ">=18.20.0"
},
"scripts": {
"install": "prebuild-install -r napi || (npm install --ignore-scripts --production=false && npm run _prebuild)",
Expand Down

0 comments on commit b111035

Please sign in to comment.