Skip to content

Commit 05f0a16

Browse files
committed
fix
1 parent a4f6a59 commit 05f0a16

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

.github/workflows/build.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ jobs:
2525
run: npm run lint
2626

2727
- name: TypeScript Type Check
28-
run: npx tsc --noEmit
28+
run: npm run type-check
2929

3030
- name: Run Vitest Tests
3131
run: npm run test:vi

package.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,8 @@
1919
"test:cy": "cypress run --component --browser chrome",
2020
"test:cy:open": "cypress open --component --browser chrome",
2121
"generate-graphql-types": "graphql-codegen --config graphql.config.yaml",
22-
"generate-graphql-types:watch": "graphql-codegen --config graphql.config.yaml --watch"
22+
"generate-graphql-types:watch": "graphql-codegen --config graphql.config.yaml --watch",
23+
"type-check": "tsc --noEmit"
2324
},
2425
"dependencies": {
2526
"@apollo/client": "3.14.0",

0 commit comments

Comments
 (0)