diff --git a/.github/workflows/check-linter.yaml b/.github/workflows/check-linter.yaml new file mode 100644 index 0000000..ac905ec --- /dev/null +++ b/.github/workflows/check-linter.yaml @@ -0,0 +1,13 @@ +name: Check linter in PRs +on: + pull_request: + types: [opened,edited,reopened,synchronize] +jobs: + linter: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v2 + - name: Install modules + run: yarn + - name: Run Prettier ESLint check + run: yarn lint