-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
1) Squash
codecov
related commits to one.
1) Added `codecov` to CircleCI. 1) Fix broken CircleCI config. 1) Move `codecov` from workflow to job. 1) Change node version for CircleCI to `lts/gallium`. 1) upgraded CircleCI node orb. 1) Added `json` coverage output for CircleCI.
- Loading branch information
1 parent
08a8073
commit 46bf704
Showing
2 changed files
with
7 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,18 +1,20 @@ | ||
version: 2.1 | ||
orbs: | ||
node: circleci/[email protected] | ||
node: circleci/[email protected] | ||
codecov: codecov/[email protected] | ||
jobs: | ||
test: | ||
executor: node/default | ||
steps: | ||
- checkout | ||
- node/install: | ||
install-yarn: true | ||
node-version: latest | ||
install-yarn: false | ||
node-version: lts/gallium | ||
- node/install-packages: | ||
cache-path: ~/hack-party/node_modules | ||
override-ci-command: npm install | ||
- run: npm run test | ||
- codecov/upload | ||
workflows: | ||
node-tests: | ||
jobs: | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters