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 0f2754a commit 087fcd9Copy full SHA for 087fcd9
.github/workflows/release.yml
@@ -16,7 +16,7 @@ jobs:
16
node-version-file: '.nvmrc'
17
- run: npm ci
18
- run: npm run build --if-present
19
- - run: npm test --if-present
+ - run: npm run test:coverage --if-present
20
- run: npx semantic-release
21
env:
22
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
package.json
@@ -8,7 +8,8 @@
8
"deploy": "gh-pages -d build",
9
"start": "NODE_ENV=development webpack serve",
10
"build": "NODE_ENV=production webpack",
11
- "test": "jest test --watch",
+ "test": "jest",
12
+ "test:watch": "jest test --watch",
13
"test:coverage": "jest test --coverage . --silent",
14
"prepare": "husky install",
15
"pre-commit": "lint-staged",
0 commit comments