Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Include working coverage script #2997

Merged
merged 7 commits into from Jul 16, 2019
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
8 changes: 7 additions & 1 deletion .circleci/config.yml
Expand Up @@ -54,7 +54,13 @@ jobs:
node-v12-latest:
docker:
- image: rollupcabal/circleci-node-v12:latest
<<: *unit_tests_12
steps:
- checkout
- restore_cache:
key: dependency-cache-{{ checksum "package-lock.json" }}
- run:
name: Run tests with coverage.
command: npm run ci:coverage

workflows:
version: 2
Expand Down
2 changes: 2 additions & 0 deletions .gitignore
Expand Up @@ -8,8 +8,10 @@ coverage
.commithash
.idea
bin/rollup
bin/rollup.map
test/_tmp
test/hooks/tmp
test/tmp
test/typescript/typings
perf/
.nyc_output/
4 changes: 4 additions & 0 deletions .nycrc
@@ -0,0 +1,4 @@
{
"exclude": ["*commonjsHelpers.js", "test"],
"extension": [".ts", ""]
}