This commit is contained in:
Emile Nijssen 2021-05-23 17:05:24 +02:00
parent d8c4598511
commit a6da5cc684
5 changed files with 33 additions and 3 deletions

23
.github/workflows/lint.yml vendored Normal file
View file

@ -0,0 +1,23 @@
name: Lint
on:
push:
branches:
- master
- production
pull_request:
jobs:
lint:
name: Lint
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/setup-node@v1
with:
node-version: '14'
- run: |
cd src
npm ci
npm run lint