aboutsummaryrefslogtreecommitdiff
path: root/.github/workflows/lint.yml
blob: 715e59bcbda9f7aa67d0c05574a279bda1f3f358 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
name: lint
on:
    push:
        branches:
            - main
    pull_request:
        branches:
            - main
jobs:
    build:
        runs-on: ubuntu-latest
        steps:
            - uses: actions/checkout@v2

            - name: Install pnpm
              run: npm i -g pnpm

            - name: Install deps
              run: pnpm i

            - name: Run ESLint
              run: pnpm run lint