We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3c316c2 commit 1e99df3Copy full SHA for 1e99df3
.github/actions/mutation-tests-all-files/action.yml
@@ -19,7 +19,20 @@ runs:
19
- name: Setup environment
20
uses: ./.github/actions/setup
21
22
+ - name: Get changed files
23
+ uses: tj-actions/[email protected]
24
+ id: changed-files
25
+ with:
26
+ files_yaml: |
27
+ src:
28
+ - 'src/**/*.ts'
29
+ - '!src/**/*.spec.ts'
30
+ - '!src/**/__mocks__/**'
31
+ separator: "','"
32
+ path: ${{ inputs.working-directory }}
33
+
34
- name: Run mutation tests
35
+ if: steps.changed-files.outputs.src_any_changed == 'true'
36
env:
37
STRYKER_DASHBOARD_API_KEY: ${{ inputs.stryker_dashboard_api_key }}
38
shell: bash
0 commit comments