We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c98f9bf commit 58b8766Copy full SHA for 58b8766
1 file changed
.github/workflows/run-all-unit-tests.yaml
@@ -15,14 +15,17 @@ jobs:
15
16
strategy:
17
matrix:
18
- os: [ubuntu-latest, macos-latest]
+ os: [ubuntu-latest, ubuntu-24.04-arm, macos-latest]
19
20
steps:
21
- uses: actions/checkout@v4
22
- - name: Use Node.js 22
+ - name: Use Node.js 24
23
uses: actions/setup-node@v4
24
with:
25
- node-version: '22.x'
+ node-version: '24.x'
26
cache: 'npm'
27
+ - name: Enable linger for admin user (Linux only)
28
+ if: runner.os == 'Linux'
29
+ run: loginctl enable-linger admin
30
- run: npm ci
- - run: npm run test
31
+ - run: npm run test -- ./test --no-file-parallelism --disable-console-intercept
0 commit comments