Skip to content

Commit 550d147

Browse files
committed
node 16 doesn't finish jest properly in CI
1 parent 0694945 commit 550d147

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

.github/workflows/CI.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ jobs:
3939
- name: Build test app
4040
run: npm run build:test
4141
- name: Run tests
42-
run: npm run test:standalone
42+
run: npm run test:standalone -- --runInBand
4343

4444
test_linux:
4545
name: Test on Linux with Node ${{ matrix.node }}
@@ -56,7 +56,7 @@ jobs:
5656
- name: Install
5757
run: npm install
5858
- name: Run tests
59-
run: npm run test:all
59+
run: npm run test:all -- --runInBand
6060

6161
test_macos:
6262
name: Test on MacOS with Node 16
@@ -70,7 +70,7 @@ jobs:
7070
- name: Install
7171
run: npm install
7272
- name: Run tests
73-
run: npm run test:all
73+
run: npm run test:all -- --runInBand
7474

7575
test_windows:
7676
name: Test on Windows with Node 16
@@ -84,4 +84,4 @@ jobs:
8484
- name: Install
8585
run: npm install
8686
- name: Run tests
87-
run: npm run test:all
87+
run: npm run test:all -- --runInBand

0 commit comments

Comments
 (0)