build(deps-dev): bump lefthook from 2.0.15 to 2.1.3 #86
Workflow file for this run
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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 |