Skip to content

Commit f53d0ff

Browse files
committed
ci: make CI flows use correct npm scripts and node versions
1 parent 23fc60e commit f53d0ff

3 files changed

Lines changed: 5 additions & 5 deletions

File tree

.github/workflows/e2e.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -22,10 +22,10 @@ jobs:
2222
steps:
2323
- uses: actions/checkout@v4
2424

25-
- name: Use Node.js 20
25+
- name: Use Node.js 24
2626
uses: actions/setup-node@v4
2727
with:
28-
node-version: 20
28+
node-version: 24
2929
cache: "npm"
3030

3131
- name: Install dependencies
@@ -62,7 +62,7 @@ jobs:
6262
- name: "e2e: Run Testplane"
6363
id: "testplane"
6464
continue-on-error: true
65-
run: npm run test-e2e
65+
run: npm run test-e2e:run-tests
6666

6767
- name: "e2e: Stop browser docker image"
6868
run: |

.github/workflows/node.js.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ jobs:
1515

1616
strategy:
1717
matrix:
18-
node-version: [22.x, 24.x]
18+
node-version: [22.x, 24.x, 26.x]
1919
# See supported Node.js release schedule at https://nodejs.org/en/about/releases/
2020

2121
steps:

.github/workflows/repl-e2e.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,4 +36,4 @@ jobs:
3636
run: npm run build
3737

3838
- name: Run REPL e2e tests
39-
run: npm run test-e2e -- --grep "REPL e2e"
39+
run: npm run test-e2e-repl

0 commit comments

Comments
 (0)