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

on:
  push:

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

    steps:
      - uses: actions/checkout@v2 # Check out the repository first.
      - name: Run prettier (JavaScript & TypeScript)
        run: |
          pushd frontend
          npm install
          npm run lint
          popd