We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7b51f15 commit 9dffb92Copy full SHA for 9dffb92
.github/workflows/build.yml
@@ -193,9 +193,17 @@ jobs:
193
with:
194
path: ${{ env.CACHED_BUILD_PATHS }}
195
key: ${{ env.BUILD_CACHE_KEY }}
196
+ - name: Check changed files
197
+ id: changed-files-specific
198
+ uses: tj-actions/[email protected]
199
+ with:
200
+ files: .*packages\/(ember|browser|core|tracing|hub|minimal|types|utils)($|/.*)
201
+ # Only run ember tests if the files above have changed
202
- name: Run Ember tests
203
+ if: steps.changed-files-specific.outputs.any_changed == 'true'
204
run: yarn test --scope=@sentry/ember
205
- name: Compute test coverage
206
207
uses: codecov/codecov-action@v1
208
209
job_artifacts:
0 commit comments