js lint workflow
This commit is contained in:
parent
05a171f01b
commit
aa05b0c2e6
12
.github/workflows/js-lint.yml
vendored
Normal file
12
.github/workflows/js-lint.yml
vendored
Normal 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
|
Loading…
Reference in New Issue
Block a user