diff --git a/.github/workflows/eslint.yml b/.github/workflows/eslint.yml new file mode 100644 index 00000000..769cacd4 --- /dev/null +++ b/.github/workflows/eslint.yml @@ -0,0 +1,17 @@ +name: ESlint + +on: + push: + branches: + - dev + pull_request: + +jobs: + eslint: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v2 + - name: Install npm dependencies + run: cd app && npm ci + - name: Run linter + run: cd app && npm run lint