File tree Expand file tree Collapse file tree 2 files changed +7
-1
lines changed Expand file tree Collapse file tree 2 files changed +7
-1
lines changed Original file line number Diff line number Diff line change @@ -201,4 +201,9 @@ jobs:
201
201
202
202
- name : Test
203
203
working-directory : ./api
204
- run : npm test
204
+ # running test:eol as node 8 is not supported anymore by the version of nyc we use, as we don't report coverage
205
+ # for this step we leave it out.
206
+ # Details: nyc requires istanbul-lib-report, which silently dropped support for Node.js v8 when going from
207
+ # 3.0.0 to 3.0.1 by requiring make-dir@^4.0.0 to fix https://github.com/advisories/GHSA-c2qf-rxjj-qqgw.
208
+ # make-dir does not support Node.js v8 anymore.
209
+ run : npm run test:eol
Original file line number Diff line number Diff line change 25
25
"lint" : " eslint . --ext .ts" ,
26
26
"test:browser" : " karma start --single-run" ,
27
27
"test" : " nyc ts-mocha -p tsconfig.json 'test/**/*.test.ts'" ,
28
+ "test:eol" : " ts-mocha -p tsconfig.json 'test/**/*.test.ts'" ,
28
29
"test:webworker" : " karma start karma.worker.js --single-run" ,
29
30
"cycle-check" : " dpdm --exit-code circular:1 src/index.ts" ,
30
31
"version" : " node ../scripts/version-update.js" ,
You can’t perform that action at this time.
0 commit comments