Skip to content

Commit 6d683a1

Browse files
committed
fix(ci): added reference for env variable to mutator ci
1 parent 1263a67 commit 6d683a1

2 files changed

Lines changed: 9 additions & 9 deletions

File tree

.github/workflows/main.yaml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,7 @@ jobs:
1717
- run: sudo apt-get install -y tzdata
1818
- run: sudo ln -fs /usr/share/zoneinfo/America/Sao_Paulo /etc/localtime
1919
- run: yarn
20+
2021
- run: yarn test-ci
2122
- name: Coveralls
2223
uses: coverallsapp/github-action@v2

.github/workflows/mutator.yaml

Lines changed: 8 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -2,16 +2,14 @@
22
name: Mutator CI
33
on:
44
push:
5-
branches:
6-
- main
7-
paths-ignore:
8-
- .github/workflows/mutator.yaml
9-
- .github/workflows/main.yaml
5+
# branches:
6+
# - main
7+
# paths-ignore:
8+
# - .github/workflows/mutator.yaml
9+
# - .github/workflows/main.yaml
1010
env:
11-
SERVICE_HOST: "dashboard.stryker-mutator.io"
1211
PROJECT: "nodejs-hexagonal-boilerplate"
13-
API_KEY: ${{ secrets.STRIKER_MUTATOR_TOKEN }}
14-
12+
STRYKER_DASHBOARD_API_KEY: ${{ secrets.STRIKER_MUTATOR_TOKEN }}
1513
jobs:
1614
mutator:
1715
runs-on: ubuntu-latest
@@ -36,4 +34,5 @@ jobs:
3634
- name: Mutator run mutator
3735
run: |
3836
yarn stryker-mutate --reporters dashboard \
39-
--dashboard.version ${{ steps.extract_branch.outputs.branch }}
37+
--dashboard.version ${{ steps.extract_branch.outputs.branch }} \
38+
--dashboard.project ${{ env.PROJECT }}

0 commit comments

Comments
 (0)