Skip to content

Commit

Permalink
Add reporting in ci
Browse files Browse the repository at this point in the history
  • Loading branch information
Kevnz committed Dec 3, 2019
1 parent dc8b42d commit 40bd27c
Show file tree
Hide file tree
Showing 5 changed files with 355 additions and 132 deletions.
21 changes: 20 additions & 1 deletion .circleci/config.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,17 @@
version: 2
jobs:
"node-13":
docker:
- image: circleci/node:13
working_directory: ~/asynctools
steps:
- checkout

- run: npm install
- run: npm test
- run: npm run test:ci
- store_test_results:
path: ~/asynctools/reports
"node-12":
docker:
- image: circleci/node:12
Expand All @@ -9,6 +21,9 @@ jobs:

- run: npm install
- run: npm test
- run: npm run test:ci
- store_test_results:
path: ~/asynctools/reports

"node-10":
docker:
Expand All @@ -19,6 +34,9 @@ jobs:

- run: npm install
- run: npm test
- run: npm run test:ci
- store_test_results:
path: ~/asynctools/reports
"deployed":
docker:
- image: circleci/node:10
Expand All @@ -38,9 +56,10 @@ workflows:
only:
- "master"
jobs:
- "deployed"
- "deployed"
build:
jobs:
- "node-13"
- "node-12"
- "node-10"
- "deployed"
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -5,3 +5,4 @@ coverage
out
docs
.DS_Store
junit.xml
Loading

0 comments on commit 40bd27c

Please sign in to comment.