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 c6f7c08 commit fcfd33cCopy full SHA for fcfd33c
.circleci/config.yml
@@ -1,6 +1,8 @@
1
version: 2.1
2
orbs:
3
ship: auth0/[email protected]
4
+ codecov: codecov/codecov@3
5
+
6
jobs:
7
build:
8
parameters:
@@ -13,19 +15,22 @@ jobs:
13
15
LANG: en_US.UTF-8
14
16
steps:
17
- checkout
18
19
- ship/node-install-packages
20
21
- run:
22
name: Run Linter
23
command: npm run lint
24
25
26
name: Run Tests
27
command: npm run test:ci
28
29
- store_artifacts:
30
path: ./coverage/<< parameters.node-version >>/lcov-report
- - run:
- name: Upload Coverage
- when: on_success
- command: bash <(curl -s https://codecov.io/bash) -Z -C $CIRCLE_SHA1
31
32
+ - codecov/upload
33
34
workflows:
35
build-and-test:
36
0 commit comments