File tree 4 files changed +11
-6
lines changed
4 files changed +11
-6
lines changed Original file line number Diff line number Diff line change 11
11
12
12
strategy :
13
13
matrix :
14
- node-version : [10.x, 12.x, 13.x]
14
+ node-version : [10.x, 12.x, 13.x, 14.x ]
15
15
os : [ubuntu-latest, windows-latest, macOS-latest]
16
16
17
17
steps :
Original file line number Diff line number Diff line change
1
+ esm: false
2
+ ts: false
3
+ jsx: false
4
+ flow: false
5
+ coverage: true
Original file line number Diff line number Diff line change @@ -43,9 +43,9 @@ A "month" is to be a period of 30 consecutive days.
43
43
44
44
| OS | Version | Package Manager | Node.js |
45
45
| ---------| ------------------------| ---------------------------| -----------|
46
- | Linux | Ubuntu 16.04 | npm | 10,12 |
46
+ | Linux | Ubuntu 16.04 | npm | 10,12,14 |
47
47
| Linux | Ubuntu 16.04 | yarn,pnpm | 10,12 |
48
- | Windows | Windows Server 2016 R2 | npm | 10,12 |
49
- | MacOS | macOS X Mojave 10.14 | npm | 10,12 |
48
+ | Windows | Windows Server 2016 R2 | npm | 10,12,14 |
49
+ | MacOS | macOS X Mojave 10.14 | npm | 10,12,14 |
50
50
51
51
Using yarn might require passing the ` --ignore-engines ` flag.
Original file line number Diff line number Diff line change 8
8
"lint" : " npm run lint:standard && npm run lint:typescript" ,
9
9
"lint:standard" : " standard --verbose | snazzy" ,
10
10
"lint:typescript" : " standard --parser @typescript-eslint/parser --plugin @typescript-eslint/eslint-plugin test/types/*.ts fastify.d.ts" ,
11
- "unit" : " tap --no-ts --no-jsx --no-esm - J test/*.test.js test/*/*.test.js" ,
12
- "unit:report" : " tap --no-ts --no-jsx --no-esm - J test/*.test.js test/*/*.test.js --cov --coverage-report=html --coverage-report=cobertura | tee out.tap" ,
11
+ "unit" : " tap -J test/*.test.js test/*/*.test.js" ,
12
+ "unit:report" : " tap -J test/*.test.js test/*/*.test.js --cov --coverage-report=html --coverage-report=cobertura | tee out.tap" ,
13
13
"unit:junit" : " tap-mocha-reporter xunit < out.tap > test/junit-testresults.xml" ,
14
14
"test:typescript" : " tsd" ,
15
15
"test:report" : " npm run lint && npm run unit:report && npm run test:typescript" ,
You can’t perform that action at this time.
0 commit comments