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 ce6f782 commit d16c8dbCopy full SHA for d16c8db
2 files changed
.github/workflows/ci.yml
@@ -26,10 +26,11 @@ jobs:
26
- name: Install Dependencies
27
run: |
28
pnpm install --frozen-lockfile
29
- - name: Lint and Typecheck
+ - name: Lint, check formatting and types
30
31
- pnpm run typecheck
32
pnpm run lint
+ pnpm run format:check
33
+ pnpm run typecheck
34
- name: Build
35
36
pnpm run build
package.json
@@ -6,8 +6,10 @@
6
"scripts": {
7
"build": "tsup",
8
"lint": "biome lint",
9
- "format": "biome format --write ./src",
10
- "release": "release-it"
+ "format": "biome format --write",
+ "format:check": "biome format",
11
+ "release": "release-it",
12
+ "typecheck": "tsc --noEmit"
13
},
14
"keywords": [
15
"vitest",
0 commit comments