We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a4f6a59 commit 05f0a16Copy full SHA for 05f0a16
.github/workflows/build.yaml
@@ -25,7 +25,7 @@ jobs:
25
run: npm run lint
26
27
- name: TypeScript Type Check
28
- run: npx tsc --noEmit
+ run: npm run type-check
29
30
- name: Run Vitest Tests
31
run: npm run test:vi
package.json
@@ -19,7 +19,8 @@
19
"test:cy": "cypress run --component --browser chrome",
20
"test:cy:open": "cypress open --component --browser chrome",
21
"generate-graphql-types": "graphql-codegen --config graphql.config.yaml",
22
- "generate-graphql-types:watch": "graphql-codegen --config graphql.config.yaml --watch"
+ "generate-graphql-types:watch": "graphql-codegen --config graphql.config.yaml --watch",
23
+ "type-check": "tsc --noEmit"
24
},
"dependencies": {
"@apollo/client": "3.14.0",
0 commit comments