js lint workflow

This commit is contained in:
Garry Ing 2021-03-07 18:39:08 -05:00
parent 05a171f01b
commit aa05b0c2e6
No known key found for this signature in database
GPG Key ID: 3B379B1F2193CC3E

12
.github/workflows/js-lint.yml vendored Normal file
View File

@ -0,0 +1,12 @@
name: JS Lint
on: [push, pull_request]
jobs:
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/setup-node@v2
with:
node-version: '14.16.0'
- run: npm install standard
- run: npx standard