Skip to content

Commit e22f083

Browse files
authored
Fix acceptance tests in CI (#405)
1 parent 592f442 commit e22f083

File tree

3 files changed

+28
-28
lines changed

3 files changed

+28
-28
lines changed

.github/workflows/test-javascript.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ jobs:
2626
matrix:
2727
os:
2828
- ubuntu-latest
29-
node-version: [22.x, 23.x]
29+
node-version: [22.x, 24.x]
3030
include:
3131
- os: windows-latest
3232
node-version: 22.x
@@ -41,14 +41,14 @@ jobs:
4141
uses: actions/setup-node@v4
4242
with:
4343
node-version: ${{ matrix.node-version }}
44-
cache: "npm"
45-
cache-dependency-path: javascript/package-lock.json
46-
- run: npm install-ci-test
44+
- run: npm ci
4745
working-directory: javascript
4846
- run: npm run build
4947
working-directory: javascript
5048
- run: npm run lint
5149
working-directory: javascript
50+
- run: npm test
51+
working-directory: javascript
5252
- name: Setup browsers
5353
run: npx playwright install --with-deps
5454
- name: Acceptance tests

javascript/package-lock.json

Lines changed: 23 additions & 23 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

javascript/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@
3838
"@eslint/compat": "^1.2.7",
3939
"@eslint/eslintrc": "^3.2.0",
4040
"@eslint/js": "^9.20.0",
41-
"@playwright/test": "^1.53.1",
41+
"@playwright/test": "^1.54.2",
4242
"@types/glob": "^9.0.0",
4343
"@types/mocha": "10.0.10",
4444
"@types/node": "22.16.2",

0 commit comments

Comments
 (0)