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 3c9df11 commit 5f42b41Copy full SHA for 5f42b41
.github/workflows/test.yml
@@ -14,9 +14,10 @@ jobs:
14
- name: Install modules
15
run: npm i
16
- name: Run tests
17
- run: npm run test:ci
+ run: npm run test -- --ci --reporters=default --reporters=jest-junit
18
- name: Reports the results of tests
19
uses: IgnusG/jest-report-action@v2.3.3
20
if: always() # Or use "continue-on-error: true" in previous test step
21
with:
22
access-token: ${{ secrets.GITHUB_TOKEN }}
23
+ run-name: test
package.json
@@ -8,8 +8,7 @@
8
"test": "tests"
9
},
10
"scripts": {
11
- "test": "node --experimental-vm-modules node_modules/.bin/jest",
12
- "test:ci": "npm run test -- --ci --reporters=default --reporters=jest-junit"
+ "test": "node --experimental-vm-modules node_modules/.bin/jest"
13
"repository": {
"type": "git",
0 commit comments