-
Notifications
You must be signed in to change notification settings - Fork 21
47 lines (43 loc) · 1.18 KB
/
mutation-testing.yml
File metadata and controls
47 lines (43 loc) · 1.18 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
name: Mutation testing
on:
push:
branches:
- master
workflow_dispatch:
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
nodejs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v6
- uses: ./.github/setup
- run: pnpm nx run metrics:stryker
env:
STRYKER_DASHBOARD_API_KEY: ${{ secrets.STRYKER_DASHBOARD_API_KEY }}
- run: pnpm nx run real-time:stryker
env:
STRYKER_DASHBOARD_API_KEY: ${{ secrets.STRYKER_DASHBOARD_API_KEY }}
elements:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v6
- uses: ./.github/setup
with:
setup-playwright: true
- name: Run Stryker
run: pnpm nx run elements:stryker
env:
STRYKER_DASHBOARD_API_KEY: ${{ secrets.STRYKER_DASHBOARD_API_KEY }}
metrics-scala:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v6
- uses: ./.github/setup
with:
setup-java: true
- name: Run Stryker
run: pnpm nx run metrics-scala:stryker
env:
STRYKER_DASHBOARD_API_KEY: ${{ secrets.STRYKER_DASHBOARD_API_KEY }}