Skip to content

Commit 55962c8

Browse files
committed
fix(ci): run tsc from web/ working directory
npm exec and npx --prefix both fail to forward --noEmit to tsc correctly. Using working-directory: web with plain npx tsc works.
1 parent d9af2a0 commit 55962c8

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

.github/workflows/ci.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -90,4 +90,5 @@ jobs:
9090
run: go vet ./...
9191

9292
- name: TypeScript type check
93-
run: npm --prefix web exec tsc -- --noEmit
93+
working-directory: web
94+
run: npx tsc --noEmit

0 commit comments

Comments
 (0)