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 f359d4c commit 1cc17e2Copy full SHA for 1cc17e2
.github/workflows/test-and-release.yml
@@ -114,8 +114,8 @@ jobs:
114
- name: Build
115
run: yarn build
116
117
- - name: Test
118
- run: yarn test
+ - name: Test and Generate Coverage
+ run: yarn coverage
119
120
- name: Upload Coverage to Codecov
121
uses: codecov/codecov-action@v1
package.json
@@ -11,8 +11,9 @@
11
"scripts": {
12
"build": "babel src -d build",
13
"lint": "eslint --ext .js .",
14
- "test": "jest --coverage",
15
- "test-watch": "jest --watch --coverage"
+ "test": "jest",
+ "test:watch": "jest --watch",
16
+ "coverage": "jest --coverage"
17
},
18
"jest": {
19
"coverageDirectory": "./coverage/",
0 commit comments