Skip to content

Commit 43b9e79

Browse files
ci(mutation test): tornar teste de mutação um gate da entrega contínua
1 parent f0f8f7d commit 43b9e79

File tree

2 files changed

+17
-24
lines changed

2 files changed

+17
-24
lines changed

.github/workflows/continuous_delivery.yml

Lines changed: 17 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,8 +55,24 @@ jobs:
5555
- name: API Test
5656
run: npm test
5757

58+
test-mutation:
59+
60+
runs-on: ubuntu-18.04
61+
62+
steps:
63+
- name: Project checkout
64+
uses: actions/checkout@v2
65+
- name: Node.js Setup
66+
uses: actions/[email protected]
67+
- name: Installation of Node.js dependencies
68+
run: npm ci
69+
- name: Mutation Test
70+
run: npm run test:mutation
71+
env:
72+
STRYKER_DASHBOARD_API_KEY: ${{ secrets.STRYKER_DASHBOARD_API_KEY }}
73+
5874
release:
59-
needs: [lint, commit-lint, test-api]
75+
needs: [lint, commit-lint, test-api, test-mutation]
6076

6177
runs-on: ubuntu-18.04
6278

.github/workflows/mutation-test.yml

Lines changed: 0 additions & 23 deletions
This file was deleted.

0 commit comments

Comments
 (0)