File tree Expand file tree Collapse file tree 2 files changed +21
-1
lines changed Expand file tree Collapse file tree 2 files changed +21
-1
lines changed Original file line number Diff line number Diff line change 6161 - name : Upload coverage to Codecov
6262 uses : codecov/codecov-action@v4
6363
64+ - name : Test in concurrent mode
65+ run : CONCURRENT_MODE=1 yarn test:ci
66+
67+ test-concurrent :
68+ needs : [install-cache-deps]
69+ runs-on : ubuntu-latest
70+ name : Test
71+ steps :
72+ - name : Checkout
73+ uses : actions/checkout@v4
74+
75+ - name : Setup Node.js and deps
76+ uses : ./.github/actions/setup-deps
77+
78+ - name : Test in concurrent mode
79+ run : CONCURRENT_MODE=1 yarn test:ci
80+
6481 test-website :
6582 runs-on : ubuntu-latest
6683 name : Test Website
Original file line number Diff line number Diff line change 1- import { resetToDefaults } from './src/pure' ;
1+ import { resetToDefaults , configure } from './src/pure' ;
22import './src/matchers/extend-expect' ;
33
44beforeEach ( ( ) => {
55 resetToDefaults ( ) ;
6+ if ( process . env . CONCURRENT_MODE === '1' ) {
7+ configure ( { concurrentRoot : true } ) ;
8+ }
69} ) ;
You can’t perform that action at this time.
0 commit comments