Skip to content

Commit 58b8766

Browse files
committed
feat: improved run all test
1 parent c98f9bf commit 58b8766

1 file changed

Lines changed: 7 additions & 4 deletions

File tree

.github/workflows/run-all-unit-tests.yaml

Lines changed: 7 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -15,14 +15,17 @@ jobs:
1515

1616
strategy:
1717
matrix:
18-
os: [ubuntu-latest, macos-latest]
18+
os: [ubuntu-latest, ubuntu-24.04-arm, macos-latest]
1919

2020
steps:
2121
- uses: actions/checkout@v4
22-
- name: Use Node.js 22
22+
- name: Use Node.js 24
2323
uses: actions/setup-node@v4
2424
with:
25-
node-version: '22.x'
25+
node-version: '24.x'
2626
cache: 'npm'
27+
- name: Enable linger for admin user (Linux only)
28+
if: runner.os == 'Linux'
29+
run: loginctl enable-linger admin
2730
- run: npm ci
28-
- run: npm run test
31+
- run: npm run test -- ./test --no-file-parallelism --disable-console-intercept

0 commit comments

Comments
 (0)