File tree Expand file tree Collapse file tree 2 files changed +4
-6
lines changed Expand file tree Collapse file tree 2 files changed +4
-6
lines changed Original file line number Diff line number Diff line change 16
16
runs-on : ${{ matrix.os }}
17
17
strategy :
18
18
matrix :
19
- os : ["ubuntu-24.04", "macos-14"
20
- # , "windows-2022"
21
- ]
19
+ os : ["ubuntu-24.04", "macos-14", "windows-2022"]
22
20
node-version : [18.x, 20.x, 22.x]
23
21
# See supported Node.js release schedule
24
22
# at https://nodejs.org/en/about/releases/
Original file line number Diff line number Diff line change 8
8
"start" : " npm run test" ,
9
9
"lint" : " npx --yes eslint --env-info; npx --yes eslint . --color --max-warnings=0 && echo '✔ Your code looks good.'" ,
10
10
"lint:watch" : " npx --yes esw . --color --max-warnings=0 --watch" ,
11
- "jest:ci" : " node --experimental-vm-modules ./node_modules/.bin/ jest --no-cache --ci --color --detectOpenHandles --forceExit --runInBand --debug" ,
11
+ "jest:ci" : " NODE_OPTIONS= --experimental-vm-modules npx jest --no-cache --ci --color --detectOpenHandles --forceExit --runInBand --debug" ,
12
12
"jest:clean" : " npx --yes jest --clearCache && npx --yes watchman watch-del-all" ,
13
- "jest:bruteforce" : " BRUTEFORCE=true node --experimental-vm-modules ./node_modules/.bin/ jest --no-cache --ci --color --detectOpenHandles --forceExit --runInBand --debug" ,
14
- "jest:watch" : " node --experimental-vm-modules ./node_modules/.bin/ jest --no-cache --ci --color --detectOpenHandles --forceExit --runInBand --debug --watchAll" ,
13
+ "jest:bruteforce" : " BRUTEFORCE=true NODE_OPTIONS= --experimental-vm-modules npx jest --no-cache --ci --color --detectOpenHandles --forceExit --runInBand --debug" ,
14
+ "jest:watch" : " NODE_OPTIONS= --experimental-vm-modules npx jest --no-cache --ci --color --detectOpenHandles --forceExit --runInBand --debug --watchAll" ,
15
15
"style:format" : " npx --yes prettier --write 'src/**/*.js'" ,
16
16
"style:check" : " npx --yes prettier --check 'src/**/*.js'" ,
17
17
"test" : " npm run jest:ci" ,
You can’t perform that action at this time.
0 commit comments