aboutsummaryrefslogtreecommitdiff
path: root/.github/workflows/legacy.yml
blob: 6edcd1db387e6aa8404e3ea591fe31935c02203e (plain)
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
name: Legacy App Lint

on:
  push:
    branches:
      - master
    paths:
      - web/**
  pull_request:
    branches:
      - master
    paths:
      - web/**

jobs:
  build:

    runs-on: ubuntu-latest

    steps:
    - uses: actions/checkout@v3
    - uses: actions/setup-node@v3
      with:
        cache: npm
        cache-dependency-path: package-lock.json
    - run: npm ci --ignore-scripts
    - run: npm run lint