update actions configuration #128
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 app | |
on: [ push, pull_request ] | |
jobs: | |
frontend-lint: | |
name: Lint frontend | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Set up Node | |
uses: actions/setup-node@v4 | |
with: | |
node-version: 22 | |
cache: 'npm' | |
cache-dependency-path: frontend/package-lock.json | |
- name: Install dependencies | |
run: npm ci | |
working-directory: frontend | |
- name: Run linter | |
run: npm run lint | |
working-directory: frontend | |
- name: Run prettier | |
run: npm run format:check | |
working-directory: frontend | |
backend-lint: | |
name: Lint backend | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Setup toolchain | |
uses: actions-rust-lang/setup-rust-toolchain@v1 | |
with: | |
toolchain: stable | |
components: rustfmt, clippy | |
- name: Run formatter | |
run: cargo fmt --manifest-path backend/Cargo.toml --check | |
- name: Run clippy | |
run: cargo clippy --manifest-path backend/Cargo.toml |