Skip to content

Commit 75babbe

Browse files
committed
ci(workflows): [ci] cleanup jobs.typescript
Signed-off-by: Lexus Drumgold <unicornware@flexdevelopment.llc>
1 parent 46914f2 commit 75babbe

File tree

1 file changed

+2
-7
lines changed

1 file changed

+2
-7
lines changed

.github/workflows/ci.yml

Lines changed: 2 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -207,8 +207,6 @@ jobs:
207207
typescript:
208208
needs: preflight
209209
runs-on: ubuntu-latest
210-
env:
211-
VITEST_REPORT: ./.vitest-reports/typecheck.blob.json
212210
steps:
213211
- id: checkout
214212
name: Checkout ${{ env.REF_NAME }}
@@ -229,18 +227,15 @@ jobs:
229227
with:
230228
key: ${{ needs.preflight.outputs.cache-key }}
231229
path: ${{ env.CACHE_PATH }}
232-
- id: print-version
233-
name: Print TypeScript version
234-
run: jq .devDependencies.typescript package.json -r
235230
- id: typecheck
236231
name: Run typecheck
237232
run: yarn typecheck
238233
- id: report
239234
name: Upload report
240235
uses: actions/upload-artifact@v4.6.2
241236
with:
242-
name: ${{ format('typecheck-{0}.blob.json', env.SHA) }}
243-
path: ${{ env.VITEST_REPORT }}
237+
name: ${{ format('{0}.typecheck.blob.json', env.SHA) }}
238+
path: ./.vitest-reports/typecheck.blob.json
244239
test:
245240
needs: preflight
246241
runs-on: ubuntu-latest

0 commit comments

Comments
 (0)