Skip to content

Bump @biomejs/biome from 2.3.11 to 2.3.13 #10

Bump @biomejs/biome from 2.3.11 to 2.3.13

Bump @biomejs/biome from 2.3.11 to 2.3.13 #10

Workflow file for this run

name: Check Lint
permissions:
contents: read
on:
push:
branches: ["main"]
pull_request:
branches: ["main"]
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
lint:
name: Lint Codebase
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v6
- name: Set up node.js
uses: actions/setup-node@v6
with:
node-version: "16"
cache: "npm"
- name: Install dependencies
run: npm install
- name: Run check
run: npm run check