We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent bc43f13 commit 7e3ab96Copy full SHA for 7e3ab96
.circleci/config.yml
@@ -25,11 +25,12 @@ jobs:
25
- image: circleci/node:latest
26
steps:
27
- checkout
28
- - restore_cache:
29
- key: dependency-cache-{{ checksum "package-lock.json" }}
+ - run:
+ name: Install npm dependencies
30
+ command: npm install
31
- run:
32
name: Test
- command: './node_modules/.bin/nyc --extension .ts mocha --forbid-only \"test/**/*.test.ts\"'
33
+ command: npm test
34
35
name: Generate code coverage
36
command: './node_modules/.bin/nyc report --reporter=text-lcov'
0 commit comments