Skip to content

Commit

Permalink
CI: only check changed files
Browse files Browse the repository at this point in the history
  • Loading branch information
paul-phan committed Jul 11, 2024
1 parent b217f21 commit 72a40b0
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 11 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/check.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ jobs:
with:
version: latest
- name: Run Biome
run: biome ci .
run: biome ci --changed .

typecheck:
name: ʦ TypeScript
Expand Down
20 changes: 11 additions & 9 deletions biome.json
Original file line number Diff line number Diff line change
@@ -1,11 +1,13 @@
{
"$schema": "https://biomejs.dev/schemas/1.8.3/schema.json",
"extends": ["./packages/biome/biome.json"],
"vcs": {
"enabled": true,
"clientKind": "git"
},
"files": {
"ignore": ["dist/**", "build/**", ".turbo/**", "templates/**"]
}
"$schema": "https://biomejs.dev/schemas/1.8.3/schema.json",
"extends": ["./packages/biome/biome.json"],
"vcs": {
"enabled": true,
"clientKind": "git",
"useIgnoreFile": true,
"defaultBranch": "main"
},
"files": {
"ignore": ["dist/**", "build/**", ".turbo/**", "templates/**"]
}
}
2 changes: 1 addition & 1 deletion pnpm-lock.yaml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

0 comments on commit 72a40b0

Please sign in to comment.