From 5efb5b33e725c11b0aa424cf394112dcad70a28d Mon Sep 17 00:00:00 2001 From: Alexandre Aubin Date: Fri, 1 Oct 2021 17:30:09 +0200 Subject: [PATCH] ci: Attempt to add eslint --- .github/workflows/eslint.yml | 17 +++++++++++++++++ 1 file changed, 17 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 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