Skip to content

Commit 217eb73

Browse files
authored
Merge pull request #1607 from rocket-admin/backend_biome_up
chore: update code quality workflow to specify Node.js version and Biome version
2 parents 51ec240 + 39d6ae4 commit 217eb73

1 file changed

Lines changed: 8 additions & 1 deletion

File tree

.github/workflows/code-quality.yml

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,9 +14,16 @@ jobs:
1414
uses: actions/checkout@v5
1515
with:
1616
persist-credentials: false
17+
- name: Setup Node.js
18+
uses: actions/setup-node@v4
19+
with:
20+
node-version: 24
21+
cache: "yarn"
22+
- name: Install dependencies
23+
run: yarn install --frozen-lockfile
1724
- name: Setup Biome
1825
uses: biomejs/setup-biome@v2
1926
with:
20-
version: latest
27+
version: 2.4.0
2128
- name: Run Biome
2229
run: biome ci --formatter-enabled=false --assist-enabled=false .

0 commit comments

Comments
 (0)