Skip to content

Commit

Permalink
Merge pull request #535 from jetersen/lint
Browse files Browse the repository at this point in the history
  • Loading branch information
jetersen committed May 26, 2020
2 parents dda819b + 75f12ad commit 3df8785
Showing 1 changed file with 21 additions and 0 deletions.
21 changes: 21 additions & 0 deletions .github/workflows/lint.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
name: Lint

on: pull_request

jobs:
eslint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
with:
fetch-depth: 1
- uses: actions/setup-node@v1
with:
version: 13.x
- run: yarn --frozen-lockfile --ignore-engines --ignore-optional --no-bin-links --non-interactive --silent --ignore-scripts --production=false
env:
HUSKY_SKIP_INSTALL: true
- uses: tinovyatkin/action-eslint@v1
with:
repo-token: ${{secrets.GITHUB_TOKEN}}
check-name: eslint

0 comments on commit 3df8785

Please sign in to comment.