Skip to content

Commit 7ed9b1d

Browse files
committed
matrix change
1 parent d9e6ec4 commit 7ed9b1d

File tree

1 file changed

+8
-15
lines changed

1 file changed

+8
-15
lines changed

.github/workflows/mutation.yml

Lines changed: 8 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -139,12 +139,12 @@ jobs:
139139
fail-fast: false
140140
matrix:
141141
package: [
142-
'@sentry/core',
143-
'@sentry/browser',
144-
'@sentry/node',
145-
'@sentry/svelte',
146-
'@sentry/sveltekit',
147-
'@sentry/utils'
142+
'core',
143+
'browser',
144+
'node',
145+
'svelte',
146+
'sveltekit',
147+
'utils'
148148
]
149149
steps:
150150
- name: Check out current commit (${{ needs.job_get_metadata.outputs.commit_label }})
@@ -175,22 +175,15 @@ jobs:
175175
echo "SENTRY_MUT_SENTRY_TRACE=${{ needs.job_build.outputs.sentry_trace }}" >> $GITHUB_ENV
176176
echo "SENTRY_MUT_BAGGAGE=${{ needs.job_build.outputs.baggage }}" >> $GITHUB_ENV
177177
178-
- name: Test 2
179-
run: |
180-
ls -la node_modules/.bin
181-
ls -la packages/core/node_modules/.bin
182-
ls -la packages/svelte/node_modules/.bin
183-
ls -la packages/browser/node_modules/.bin
184-
185178
- name: Run mutation test
186-
run: yarn nx run ${{ matrix.package }}:test:mutation
179+
run: yarn nx run @sentry/${{ matrix.package }}:test:mutation
187180
env:
188181
NODE_VERSION: ${{ matrix.node }}
189182

190183
- name: Upload Results
191184
uses: actions/upload-artifact@v4
192185
with:
193-
name: test-reports
186+
name: test-reports ${{ matrix.package }}
194187
path: |
195188
${{ github.workspace }}/packages/**/mutation.json
196189
${{ github.workspace }}/packages/**/mutation.html

0 commit comments

Comments
 (0)