summaryrefslogtreecommitdiff
path: root/.github/workflows/lint.yml
blob: deba25af49d1ee72449c5fe33f5e2cddbdb66438 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
name: Lint

on:
  push:
  pull_request:

jobs:
  lint:
    name: Run linters
    runs-on: ubuntu-22.04

    steps:
      - uses: actions/checkout@v4 # Check out the repository first.

      - name: Install TypeScript dependencies
        working-directory: frontend
        run: |
          npm i -g pnpm
          pnpm i --frozen-lockfile

      - name: Run prettier (TypeScript)
        working-directory: frontend
        run: pnpm run lint