Skip to content

Instantly share code, notes, and snippets.

@brettdewoody
Created September 17, 2020 16:23
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save brettdewoody/273bbffaae208dcd239d65d53e12e564 to your computer and use it in GitHub Desktop.
Save brettdewoody/273bbffaae208dcd239d65d53e12e564 to your computer and use it in GitHub Desktop.
StandardJS Github Action
name: Lint
on: [push]
jobs:
StandardJS:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/setup-node@v1
with:
node-version: 12.x
- run: npm install standard
- run: npm run lint
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment