diff --git a/.github/workflows/eslint.yml b/.github/workflows/eslint.yml new file mode 100644 index 0000000..38c42c4 --- /dev/null +++ b/.github/workflows/eslint.yml @@ -0,0 +1,18 @@ +name: Linting + +on: [push, pull_request] + +jobs: + build: + name: Lint with ESLint + runs-on: ubuntu-latest + + steps: + # Initialization + - uses: actions/checkout@v2 + - uses: actions/setup-node@v2 + - run: npm install + + - name: Run Tests + timeout-minutes: 5 + run: npm run lint \ No newline at end of file