Skip to content

Commit 7e3ab96

Browse files
committed
[CIRCLE_CI]: npm install added for test also
1 parent bc43f13 commit 7e3ab96

File tree

1 file changed

+4
-3
lines changed

1 file changed

+4
-3
lines changed

.circleci/config.yml

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -25,11 +25,12 @@ jobs:
2525
- image: circleci/node:latest
2626
steps:
2727
- checkout
28-
- restore_cache:
29-
key: dependency-cache-{{ checksum "package-lock.json" }}
28+
- run:
29+
name: Install npm dependencies
30+
command: npm install
3031
- run:
3132
name: Test
32-
command: './node_modules/.bin/nyc --extension .ts mocha --forbid-only \"test/**/*.test.ts\"'
33+
command: npm test
3334
- run:
3435
name: Generate code coverage
3536
command: './node_modules/.bin/nyc report --reporter=text-lcov'

0 commit comments

Comments
 (0)