Skip to content

Commit

Permalink
Merge pull request #7 from BrownUniversity/task/linting-workflow
Browse files Browse the repository at this point in the history
linting workflow
  • Loading branch information
christopher-keith authored Jan 17, 2020
2 parents e218c3d + cb461ab commit 2d04e6a
Showing 1 changed file with 14 additions and 0 deletions.
14 changes: 14 additions & 0 deletions .github/workflows/linting.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
name: Linting
on: push

jobs:
lint:
name: Lint source code
runs-on: ubuntu-latest
steps:
- name: Checkout source
uses: actions/checkout@v2
- name: Install node dependencies
run: npm ci
- name: Eslint
run: npm run lint

0 comments on commit 2d04e6a

Please sign in to comment.