Skip to content

Commit

Permalink
fix(cicd): update ci to use biome check
Browse files Browse the repository at this point in the history
  • Loading branch information
felixhoffmnn committed Nov 28, 2024
1 parent 720eddd commit e9d616f
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 5 deletions.
6 changes: 2 additions & 4 deletions .github/workflows/style.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -20,10 +20,8 @@ jobs:
cache: "pnpm"
- name: Install dependencies
run: pnpm install --ignore-scripts
- name: Run Prettier
run: pnpm run format:check
- name: Run ESLint
run: pnpm run lint
- name: Run Biome
run: pnpm run biome check
- name: Run TypeScript check
run: |
pnpm run sync
Expand Down
3 changes: 2 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,8 @@
"astro": "astro",
"lint": "biome lint",
"lint:fix": "biome lint --fix",
"format": "biome format --fix"
"format": "biome format --fix",
"format:check": "biome format --check"
},
"dependencies": {
"@astrojs/check": "^0.9.4",
Expand Down

0 comments on commit e9d616f

Please sign in to comment.