diff --git a/.github/workflows/ESLint.yml b/.github/workflows/ESLint.yml new file mode 100644 index 0000000..d25cffc --- /dev/null +++ b/.github/workflows/ESLint.yml @@ -0,0 +1,18 @@ +name: ESLint + +on: + pull_request: + +jobs: + Validate: + runs-on: ubuntu-latest + + steps: + - name: Check out + uses: actions/checkout@v4 + + - name: Install ESLint + run: yarn add -D eslint + + - name: ESLint + run: yarn lint