diff options
| author | Tom Carrick <tom@carrick.eu> | 2026-04-18 14:12:44 +0300 |
|---|---|---|
| committer | Jacob Walls <jacobtylerwalls@gmail.com> | 2026-04-18 15:46:37 +0300 |
| commit | 4a6f797e480ff918cad7a93a331e48b45df091dc (patch) | |
| tree | 285098aa2ade74af8631cf0dd3a529ce74f91707 /.github | |
| parent | ed79c5959add54b6e8ea589ec601e0d2e801517e (diff) | |
Refs #35007 -- Added biome to lint and format CSS files.
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 |
