Skip to content

chore(deps): bump @biomejs/biome from 1.7.3 to 1.8.3 #1593

chore(deps): bump @biomejs/biome from 1.7.3 to 1.8.3

chore(deps): bump @biomejs/biome from 1.7.3 to 1.8.3 #1593

Workflow file for this run

name: Lint code
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
lint:
name: lint
runs-on: ubuntu-latest
steps:
- name: Check out the code
uses: actions/checkout@v4
- name: Install pnpm
uses: pnpm/action-setup@v2
with:
run_install: false
- name: Install Node.js
uses: actions/setup-node@v4
with:
node-version-file: .nvmrc
cache: pnpm
cache-dependency-path: pnpm-lock.yaml
- name: Install dependencies
run: pnpm install --frozen-lockfile
- name: Run Lint Checks
run: pnpm lint:ci