Skip to content

Commit

Permalink
Build: add node 23 and fix non x64 bug
Browse files Browse the repository at this point in the history
  • Loading branch information
giggio committed Oct 23, 2024
1 parent 74a42e2 commit e9315a0
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ jobs:
strategy:
fail-fast: false
matrix:
node: ["18.x", "20.x", "22.x"]
node: ["18.x", "20.x", "22.x", "23.x"]
runner: ["windows-latest", "ubuntu-latest", "macos-latest"]
steps:
- uses: actions/checkout@v4
Expand Down Expand Up @@ -102,10 +102,10 @@ jobs:
strategy:
fail-fast: false
matrix:
node: ["20", "22"]
node: ["20", "22", "23"]
steps:
- uses: actions/checkout@v4
- uses: uraimo/run-on-arch-action@v2.7.1
- uses: uraimo/run-on-arch-action@v2.8.1
name: Verify install
id: build
with:
Expand Down Expand Up @@ -146,10 +146,10 @@ jobs:
strategy:
fail-fast: false
matrix:
node: ["18", "20", "22"]
node: ["18", "20", "22", "23"]
steps:
- uses: actions/checkout@v4
- uses: uraimo/run-on-arch-action@v2.7.1
- uses: uraimo/run-on-arch-action@v2.8.1
name: Verify install
id: build
with:
Expand Down
2 changes: 1 addition & 1 deletion testInstall.js
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ const os = require('os');
const path = require('path');
const fs = require('fs');
const spawnSync = require('child_process').spawnSync;
const versions = ['18', '20', '22'];
const versions = ['18', '20', '22', '23'];
const tempInstallPath = path.resolve(os.tmpdir(), 'chromedriver-test');
const packedFile = path.resolve(tempInstallPath, 'chromedriver.tgz');

Expand Down

0 comments on commit e9315a0

Please sign in to comment.