diff --git a/.github/workflows/eslint.yml b/.github/workflows/eslint.yml new file mode 100644 index 00000000..a8956d36 --- /dev/null +++ b/.github/workflows/eslint.yml @@ -0,0 +1,12 @@ + +name: 👀 CI ESLint +on: push +jobs: + build: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v2 + - name: Install modules + run: yarn + - name: Run ESLint + run: yarn lint