add github workflow to enforce linting of JS files (#348)

pull/357/head
Kevin Gibbons 2 years ago committed by GitHub
parent e7f960bf46
commit b4fe9a784f
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -0,0 +1,16 @@
name: lint_js
on: [pull_request, push]
jobs:
check:
name: lint_js
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/setup-node@v3
with:
node-version: '16'
- run: npm ci
- run: npm run lint
- run: npm run format -- --check
Loading…
Cancel
Save