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 63bb21f commit 3f8d9cdCopy full SHA for 3f8d9cd
.github/workflows/unit-test.yml
@@ -23,10 +23,10 @@ jobs:
23
run: nci
24
25
- name: Lint
26
- run: nr lint
+ run: nr lint --max-warnings=0
27
28
- - name: Format
29
- run: nr format --check
+ - name: Typecheck
+ run: nr typecheck
30
31
unit_test:
32
runs-on: ${{ matrix.os }}
package.json
@@ -51,6 +51,7 @@
51
"lint": "eslint --cache .",
52
"lint:fix": "pnpm run lint --fix",
53
"format": "prettier --cache --write .",
54
+ "typecheck": "tsc --noEmit",
55
"test": "vitest",
56
"test:deno": "cd tests/deno && deno run --allow-net --import-map=import_map.json --allow-env index.ts",
57
"release": "bumpp && pnpm publish",
0 commit comments