Add linting to GitHub actions

This commit is contained in:
Lei Nelissen
2022-01-01 22:37:58 +01:00
parent 4e6a758d83
commit 419ce99d08
2 changed files with 14 additions and 1 deletions

13
.github/workflows/lint.yml vendored Normal file
View File

@@ -0,0 +1,13 @@
name: Lint
on: [push]
jobs:
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v1
- name: Install Node dependencies
run: npm install
- name: Run linter
run: npm run lint