Skip to content

Commit b577e04

Browse files
committed
fix tsc command
1 parent aaa23ee commit b577e04

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.github/actions/validate-sdk/action.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ runs:
2020

2121
- name: Typecheck tests directory
2222
shell: bash
23-
run: npx tsc --noEmit --skipLibCheck --esModuleInterop --moduleResolution node --module esnext --target es2020 'tests/**/*.ts'
23+
run: npx tsc --noEmit --skipLibCheck --esModuleInterop --moduleResolution node --module esnext --target es2020 tests/**/*.ts
2424

2525
- name: Install examples dependencies
2626
shell: bash
@@ -30,7 +30,7 @@ runs:
3030
- name: Typecheck examples root
3131
shell: bash
3232
working-directory: examples
33-
run: npx tsc --noEmit --skipLibCheck --esModuleInterop --moduleResolution node --module esnext --target es2020 '*.ts'
33+
run: npx tsc --noEmit --skipLibCheck --esModuleInterop --moduleResolution node --module esnext --target es2020 *.ts
3434

3535
- name: Install nextjs-example dependencies
3636
shell: bash

0 commit comments

Comments
 (0)