mirror of
https://github.com/DayuanJiang/next-ai-draw-io.git
synced 2026-09-01 17:10:24 +08:00
ci: pin Biome to 2.4.13 in auto-format workflow (#869)
CI used npx @biomejs/biome@latest, which drifted to 2.5.0 and failed the format job (deprecated config fields + stricter parsing of existing files like public/resnet50.svg) on unrelated PRs. Pin to the version already in package.json so CI matches local and pre-commit runs.
This commit is contained in:
4
.github/workflows/auto-format.yml
vendored
4
.github/workflows/auto-format.yml
vendored
@@ -23,7 +23,9 @@ jobs:
|
|||||||
node-version: '24'
|
node-version: '24'
|
||||||
|
|
||||||
- name: Run Biome format
|
- name: Run Biome format
|
||||||
run: npx @biomejs/biome@latest check --write --no-errors-on-unmatched .
|
# Pin to the version in package.json so CI matches local/pre-commit
|
||||||
|
# (npx @latest drifts — e.g. 2.5.0 broke this job on unrelated PRs).
|
||||||
|
run: npx @biomejs/biome@2.4.13 check --write --no-errors-on-unmatched .
|
||||||
|
|
||||||
- name: Check for changes
|
- name: Check for changes
|
||||||
id: changes
|
id: changes
|
||||||
|
|||||||
Reference in New Issue
Block a user