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 9ebf911 commit 4bc6effCopy full SHA for 4bc6eff
.github/workflows/validate-pr.yaml
@@ -33,6 +33,7 @@ jobs:
33
node-version: ${{ matrix.node-version }}
34
cache: "pnpm"
35
- run: pnpm install
36
+ - run: pnpm ci:typecheck
37
- run: pnpm ci:lint
38
- run: pnpm ci:format
39
- run: pnpm test
package.json
@@ -10,6 +10,7 @@
10
"format": "prettier --write --ignore-unknown .",
11
"coverage": "open coverage/index.html",
12
"prepare": "husky",
13
+ "ci:typecheck": "tsc",
14
"ci:lint": "eslint 'src/**/*.ts'",
15
"ci:format": "prettier --check --ignore-unknown .",
16
"ci:coverage": "nyc check-coverage --lines 90 --branches 80 --statements 90",
0 commit comments