From f6f33d88fcd246dcdb7de9914c9f020962c8fad4 Mon Sep 17 00:00:00 2001 From: Artem Niehrieiev Date: Mon, 16 Feb 2026 13:57:19 +0000 Subject: [PATCH] chore: update code quality workflow to specify Node.js version and Biome version --- .github/workflows/code-quality.yml | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/.github/workflows/code-quality.yml b/.github/workflows/code-quality.yml index 5588a0723..a9f55aa07 100644 --- a/.github/workflows/code-quality.yml +++ b/.github/workflows/code-quality.yml @@ -14,9 +14,16 @@ jobs: uses: actions/checkout@v5 with: persist-credentials: false + - name: Setup Node.js + uses: actions/setup-node@v4 + with: + node-version: 24 + cache: "yarn" + - name: Install dependencies + run: yarn install --frozen-lockfile - name: Setup Biome uses: biomejs/setup-biome@v2 with: - version: latest + version: 2.4.0 - name: Run Biome run: biome ci --formatter-enabled=false --assist-enabled=false .