Compare commits

...

1 Commits

Author SHA1 Message Date
dayuan.jiang
c00d8bbc18 ci: pin Biome to 2.4.13 in auto-format workflow
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.
2026-06-15 00:41:02 +09:00

View File

@@ -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