diff options
Diffstat (limited to '.github')
| -rw-r--r-- | .github/workflows/linters.yml | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/.github/workflows/linters.yml b/.github/workflows/linters.yml index e37d7b5ee2..ccee1adde0 100644 --- a/.github/workflows/linters.yml +++ b/.github/workflows/linters.yml @@ -83,3 +83,20 @@ jobs: with: advanced-security: false annotations: true + + biome: + runs-on: ubuntu-latest + timeout-minutes: 60 + steps: + - name: Checkout + uses: actions/checkout@v6 + with: + persist-credentials: false + - name: Set up Node.js + uses: actions/setup-node@v5 + with: + node-version: '20' + cache: 'npm' + cache-dependency-path: '**/package.json' + - run: npm install + - run: npx biome ci |
