feat: update dependencies #165
Workflow file for this run
This file contains 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: 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 |