Skip to content

Collapse sidebar sections (#29) #21

Collapse sidebar sections (#29)

Collapse sidebar sections (#29) #21

Workflow file for this run

name: Lint
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
lint:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Set up Node.js
uses: actions/setup-node@v4
with:
node-version-file: ./client/.nvmrc
- name: Install dependencies
run: npm install
working-directory: ./client
- name: Install Rust
uses: actions-rs/toolchain@v1
with:
profile: minimal
toolchain: stable
components: rustfmt
- name: Lint
run: npm run lint
working-directory: ./client
- name: Check formatting
run: npm run format:check
working-directory: ./client