Skip to content

Commit efc28b1

Browse files
move reporter from config to pipeline
1 parent 8159001 commit efc28b1

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

.github/workflows/pull_request.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,8 @@ jobs:
2929
- name: Install dependencies
3030
run: npm ci
3131
- name: Run Tests
32-
run: npm test -- --ci
32+
run: |
33+
npm test -- --ci --reporters='["github-actions", {"silent": false}]' --reporters=default
3334
env:
3435
CONDUCTOR_SERVER_URL: ${{ vars.SERVER_URL }}
3536
CONDUCTOR_AUTH_KEY: ${{ secrets.AUTH_KEY }}

jest.config.mjs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,5 +9,4 @@ export default {
99
"**/?(*.)+(spec|test).[tj]s?(x)",
1010
],
1111
transformIgnorePatterns: ["/node_modules/", "\\.pnp\\.[^\\/]+$"],
12-
reporters: [["github-actions", { silent: false }], "default"],
1312
};

0 commit comments

Comments
 (0)