Skip to content

Commit

Permalink
Stop building and testing against Node v16 (runtime EOL)
Browse files Browse the repository at this point in the history
This also removes building for Electron versions that carries Node `v16`.
  • Loading branch information
m4heshd committed Sep 11, 2023
1 parent ae23e69 commit be49360
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,8 @@ on:
workflow_dispatch: {}

env:
NODE_BUILD_CMD: npx --no-install prebuild -r node -t 16.0.0 -t 18.0.0 -t 20.0.0 --include-regex 'better_sqlite3.node$'
ELECTRON_BUILD_CMD: npx --no-install prebuild -r electron -t 16.0.0 -t 17.0.0 -t 18.0.0 -t 19.0.0 -t 20.0.0 -t 21.0.0 -t 22.0.0 -t 23.0.0 -t 24.0.0 -t 25.0.0 -t 26.0.0 --include-regex 'better_sqlite3.node$'
NODE_BUILD_CMD: npx --no-install prebuild -r node -t 18.0.0 -t 20.0.0 --include-regex 'better_sqlite3.node$'
ELECTRON_BUILD_CMD: npx --no-install prebuild -r electron -t 23.0.0 -t 24.0.0 -t 25.0.0 -t 26.0.0 --include-regex 'better_sqlite3.node$'

jobs:
test:
Expand All @@ -25,7 +25,6 @@ jobs:
- macos-latest
- windows-2019
node:
- 16
- 18
- 20
name: Testing Node ${{ matrix.node }} on ${{ matrix.os }}
Expand Down

0 comments on commit be49360

Please sign in to comment.