File tree Expand file tree Collapse file tree 2 files changed +6
-0
lines changed Expand file tree Collapse file tree 2 files changed +6
-0
lines changed Original file line number Diff line number Diff line change @@ -30,11 +30,16 @@ jobs:
3030 npm install --only=dev
3131 npm list --dev --depth=0
3232 - name : Run tests
33+ if : ${{ matrix.node <= 6 }}
3334 run : npm run test
35+ - name : Run tests
36+ if : ${{ !(matrix.node <= 6) }}
37+ run : npm run test:windows
3438 # - name: Run type checking
3539 # run: npm run types
3640 - name : Run benchmark
3741 run : |
3842 npm run bench
3943 - name : Upload coverage to Codecov
44+ if : ${{ matrix.node <= 6 }}
4045 uses : codecov/codecov-action@v2
Original file line number Diff line number Diff line change 4747 "release" : " np" ,
4848 "lint" : " xo" ,
4949 "test" : " nyc ava -m \" !*benchmark*\" " ,
50+ "test:windows" : " ava -m \" !*benchmark*\" " ,
5051 "types" : " tsd" ,
5152 "bench" : " ava -m \" *benchmark*\" "
5253 },
You can’t perform that action at this time.
0 commit comments