Skip to content

Commit 11111bd

Browse files
Attempt fixing CI (#1933)
* Attempt fixing CI * Bump safari versions
1 parent 5555f8c commit 11111bd

File tree

2 files changed

+15
-21
lines changed

2 files changed

+15
-21
lines changed

.github/workflows/ci.yml

Lines changed: 13 additions & 19 deletions
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,8 @@ on:
44
push:
55
branches:
66
- master
7-
- '0.6'
8-
- '0.8.x'
7+
- "0.6"
8+
- "0.8.x"
99
- v*
1010
pull_request:
1111

@@ -18,28 +18,22 @@ jobs:
1818
- uses: actions/checkout@v4
1919
- uses: actions/setup-node@v5
2020
with:
21-
node-version: 14
22-
cache: 'npm'
21+
node-version: 22
22+
cache: "npm"
2323
cache-dependency-path: package.json
2424
- run: npm i
2525
- run: npm run lint
2626

2727
test:
2828
strategy:
2929
matrix:
30-
os: [ubuntu-latest, macos-latest, windows-latest]
31-
node: [10, 12, 14, 16, 18, 20, 22]
32-
exclude:
30+
os: [ubuntu-latest]
31+
node: [16, 18, 20, 22]
32+
include:
3333
- os: macos-latest
34-
node: 10
35-
- os: macos-latest
36-
node: 12
37-
- os: macos-latest
38-
node: 14
39-
- os: windows-latest
40-
node: 10
34+
node: 22
4135
- os: windows-latest
42-
node: 12
36+
node: 22
4337
fail-fast: true
4438

4539
runs-on: ${{ matrix.os }}
@@ -50,7 +44,7 @@ jobs:
5044
- uses: actions/setup-node@v5
5145
with:
5246
node-version: ${{ matrix.node }}
53-
cache: 'npm'
47+
cache: "npm"
5448
cache-dependency-path: package.json
5549
- run: firefox --version
5650
- run: npm i
@@ -71,14 +65,14 @@ jobs:
7165
name: browser-tests
7266
runs-on: ubuntu-latest
7367
timeout-minutes: 10
74-
concurrency: 'sauce'
68+
concurrency: "sauce"
7569

7670
steps:
7771
- uses: actions/checkout@v4
7872
- uses: actions/setup-node@v5
7973
with:
80-
node-version: 14
81-
cache: 'npm'
74+
node-version: 22
75+
cache: "npm"
8276
cache-dependency-path: package.json
8377
- run: npm i
8478
- run: npm run browser-tests

examples/saucelabs/testem.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -28,12 +28,12 @@
2828
},
2929
"SL_Safari_Current": {
3030
"exe": "../../node_modules/.bin/saucie",
31-
"args": ["-b", "safari", "-v", "9", "--no-connect", "--attach", "-u"],
31+
"args": ["-b", "safari", "-v", "17", "--no-connect", "--attach", "-u"],
3232
"protocol": "browser"
3333
},
3434
"SL_Safari_Last": {
3535
"exe": "../../node_modules/.bin/saucie",
36-
"args": ["-b", "safari", "-v", "8", "--no-connect", "--attach", "-u"],
36+
"args": ["-b", "safari", "-v", "16", "--no-connect", "--attach", "-u"],
3737
"protocol": "browser"
3838
},
3939
"SL_MS_Edge": {

0 commit comments

Comments
 (0)