Skip to content

Commit

Permalink
Add GH Workflow Action for automated linting (#76)
Browse files Browse the repository at this point in the history
  • Loading branch information
ibnesayeed authored Feb 25, 2020
1 parent be92a93 commit b3a519f
Showing 1 changed file with 18 additions and 0 deletions.
18 changes: 18 additions & 0 deletions .github/workflows/lint.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
name: Awesome Lint

on: [push, pull_request]

jobs:
run-lint:
runs-on: ubuntu-18.04
steps:
- uses: actions/checkout@master
with:
fetch-depth: 0
- uses: actions/setup-node@master
with:
node-version: 12.x
- name: Install awesome-lint CLI
run: npm install -g awesome-lint
- name: Run Awesome Lint
run: awesome-lint

0 comments on commit b3a519f

Please sign in to comment.