-
Notifications
You must be signed in to change notification settings - Fork 77
50 lines (39 loc) · 981 Bytes
/
lint.yml
File metadata and controls
50 lines (39 loc) · 981 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
name: Lint & Format
permissions:
contents: read
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
python:
runs-on: ubuntu-24.04
steps:
- uses: actions/checkout@v4
- name: Ruff lint
uses: astral-sh/ruff-action@v3
with:
args: check
- name: Ruff format check
uses: astral-sh/ruff-action@v3
with:
args: format --check
frontend:
runs-on: ubuntu-24.04
steps:
- uses: actions/checkout@v4
- uses: pnpm/action-setup@v4
with:
version: 10
- uses: actions/setup-node@v4
with:
node-version: "20"
cache: pnpm
cache-dependency-path: frontend/pnpm-lock.yaml
- name: Install dependencies
run: cd frontend && pnpm install --frozen-lockfile
- name: ESLint
run: cd frontend && pnpm run lint
- name: Prettier check
run: cd frontend && pnpm run format:check