Skip to content

Commit 81d8ba0

Browse files
committed
ci: Drop tests in Node.js < 20.19, other fixes
1 parent acfc6e5 commit 81d8ba0

2 files changed

Lines changed: 6 additions & 9 deletions

File tree

.github/vitest.browserstack.config.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ export default defineConfig({
4444
browser: 'chromium',
4545
provider: bsProvider({
4646
browser: 'playwright-firefox',
47-
browser_version: '110'
47+
browser_version: '111'
4848
})
4949
},
5050
{

.github/workflows/nodejs.yaml

Lines changed: 5 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -12,16 +12,14 @@ jobs:
1212

1313
strategy:
1414
matrix:
15-
node-version: [14, 16, 18, latest]
15+
node-version: [20.19.0, 22, latest]
1616

1717
steps:
18-
- uses: actions/checkout@v3
18+
- uses: actions/checkout@v6
1919
- name: Use Node.js ${{ matrix.node-version }}
20-
uses: actions/setup-node@v3
20+
uses: actions/setup-node@v6
2121
with:
2222
node-version: ${{ matrix.node-version }}
23-
- if: matrix.node-version == 14
24-
run: npm install --global npm@7
2523
- run: npm ci
2624
- run: npm run build
2725
- run: npm test
@@ -34,9 +32,8 @@ jobs:
3432
runs-on: ubuntu-latest
3533

3634
steps:
37-
- uses: actions/checkout@v3
35+
- uses: actions/checkout@v6
3836
with: { submodules: true }
39-
- uses: actions/setup-node@v3
40-
with: { node-version: 18 }
37+
- uses: actions/setup-node@v6
4138
- run: npm ci
4239
- run: npm run test262

0 commit comments

Comments
 (0)