From e8d5dbec3e28f10acae58fdd157c9d8bd2a6afea Mon Sep 17 00:00:00 2001 From: Michael C Date: Mon, 5 Jul 2021 03:18:58 -0400 Subject: [PATCH] add eslint workflow --- .github/workflows/eslint.yml | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 .github/workflows/eslint.yml 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