Skip to content

Bump @biomejs/biome from 1.9.4 to 2.1.3 #267

Bump @biomejs/biome from 1.9.4 to 2.1.3

Bump @biomejs/biome from 1.9.4 to 2.1.3 #267

Workflow file for this run

name: ci
on:
push:
branches: [main]
tags: ['v*']
pull_request:
branches: [main]
workflow_dispatch:
jobs:
ci:
runs-on: ubuntu-latest
steps:
- name: checkout
uses: actions/checkout@v4
- name: Cache
uses: actions/cache@v4
with:
path: |
~/.tmp
.tmp
key: ${{ runner.os }}-jest-environment-jsdom-ci-${{ hashFiles('turbo.json') }}
restore-keys: |
${{ runner.os }}-jest-environment-jsdom-ci-
- run: npm ci
- run: npm run all
- name: Check Diff
id: checkdiff
run: |
[[ -z $(git status --porcelain | tee /dev/stderr) ]] || exit 1