Skip to content

Commit 6fd344d

Browse files
committed
Fix CI using Node.js v22
1 parent 0172883 commit 6fd344d

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

.github/workflows/ci.yml

+4-4
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ jobs:
1313
container_tag:
1414
# - "current"
1515
- "lts"
16-
- "20"
16+
- "22"
1717
fail-fast: false
1818

1919
runs-on: ubuntu-latest
@@ -27,7 +27,7 @@ jobs:
2727
node -v
2828
npm -v
2929
- run: npm ci
30-
- run: node --test --experimental-strip-types
30+
- run: npm run test
3131
- uses: actions/upload-artifact@v4
3232
with:
3333
name: "junit test reports node ${{ matrix.container_tag }}"
@@ -39,7 +39,7 @@ jobs:
3939
container_tag:
4040
# - "current"
4141
- "lts"
42-
- "20"
42+
- "22"
4343
fail-fast: false
4444

4545
runs-on: ubuntu-latest
@@ -54,4 +54,4 @@ jobs:
5454
npm -v
5555
- run: npm ci
5656
- run: npm run build
57-
- run: node --test --experimental-strip-types integrate_tests/
57+
- run: npm run integrate_test

0 commit comments

Comments
 (0)