diff --git a/.github/workflows/actions.yml b/.github/workflows/actions.yml index b18841c..65e91c0 100644 --- a/.github/workflows/actions.yml +++ b/.github/workflows/actions.yml @@ -22,12 +22,11 @@ jobs: - name: Checkout code uses: actions/checkout@v4 - - name: Install Biome - run: yarn add @biomejs/biome + - name: Setup Biome CLI + uses: biomejs/setup-biome@v2 - - name: Run lint - run: yarn ci - continue-on-error: false + - name: Run Biome + run: biome ci src/ test: name: Test @@ -53,7 +52,7 @@ jobs: strategy: fail-fast: false matrix: - language: ['javascript'] + language: ["javascript"] # CodeQL supports [ 'cpp', 'csharp', 'go', 'java', 'javascript', 'python' ] # Learn more: # https://docs.github.com/en/free-pro-team@latest/github/finding-security-vulnerabilities-and-errors-in-your-code/configuring-code-scanning#changing-the-languages-that-are-analyzed diff --git a/package.json b/package.json index a3ad20e..11a023a 100644 --- a/package.json +++ b/package.json @@ -15,7 +15,7 @@ "test": "vitest run --coverage" }, "dependencies": { - "@biomejs/biome": "^1.9.4", + "@biomejs/biome": "1.9.4", "@reduxjs/toolkit": "^2.6.0", "@testing-library/react": "^16.2.0", "@testing-library/user-event": "^14.6.1",