Skip to content

build(deps-dev): bump lefthook from 2.0.15 to 2.1.3 #86

build(deps-dev): bump lefthook from 2.0.15 to 2.1.3

build(deps-dev): bump lefthook from 2.0.15 to 2.1.3 #86

Workflow file for this run

name: CI
on:
pull_request:
push:
branches: [main]
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v6
- name: Setup Environment
uses: ./.github/actions/setup
- name: Security Audit
run: pnpm audit --audit-level=moderate
- name: Run tests
run: pnpm test
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v6
- name: Setup Environment
uses: ./.github/actions/setup
- name: Run lint check
run: pnpm lint:check
check-types:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v6
- name: Setup Environment
uses: ./.github/actions/setup
- name: Run typecheck
run: pnpm typecheck
check-format:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v6
- name: Setup Environment
uses: ./.github/actions/setup
- name: Run format check
run: pnpm format:check