Skip to content

Commit a558272

Browse files
ci: run jest with --verbose flag
1 parent a2a0d39 commit a558272

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

.github/workflows/actions.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ jobs:
2222
node-version: ${{ matrix.node-version }}
2323

2424
- name: Cache node_modules directory
25-
- uses: actions/cache@v2
25+
uses: actions/cache@v2
2626
with:
2727
path: '**/node_modules'
2828
key: ${{ runner.os }}-modules-${{ hashFiles('**/yarn.lock') }}

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
"start": "nodemon dist/index.js",
1313
"dev": "concurrently \"yarn:build-dev\" \"yarn:start\"",
1414
"test-dev": "jest --watchAll --no-cache",
15-
"test": "jest"
15+
"test": "jest --verbose"
1616
},
1717
"husky": {
1818
"hooks": {

0 commit comments

Comments
 (0)