Skip to content

chore(deps-dev): bump vitest from 2.1.6 to 2.1.9 #2

chore(deps-dev): bump vitest from 2.1.6 to 2.1.9

chore(deps-dev): bump vitest from 2.1.6 to 2.1.9 #2

Workflow file for this run

name: Lint
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
lint:
name: Lint
runs-on: ubuntu-latest
steps:
- name: Checkout Code
uses: actions/checkout@v4
with:
fetch-depth: 0
- uses: ./.github/actions/setup-bun
- uses: ./.github/actions/setup-commitizen
- name: Check TypeScript Formatting
run: bun format:check
- name: Check Rust Linting
run: cargo clippy
- name: Check Rust formatting
run: cargo fmt -- --check
- name: Check Commit Messages
run: cz check --rev-range HEAD