From c28d5ba24821739cd24314e4ae3a0d367a836201 Mon Sep 17 00:00:00 2001 From: Abdirahim Musse <33973272+abmusse@users.noreply.github.com> Date: Wed, 8 Apr 2020 18:46:16 -0500 Subject: [PATCH 1/4] ci: Add eslint action --- .github/workflows/ci.yml | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 4c5035ab..8e52bf2e 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -33,3 +33,11 @@ jobs: TKUSER: ${{ secrets.IBMI_USERNAME }} TKPASS: ${{ secrets.IBMI_PASSWORD }} + eslint: + + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v1 + - uses: hallee/eslint-action@master + with: + repo-token: ${{ secrets.GITHUB_TOKEN }} From 78e8d9c11131f31efa3254b81e251419898e8f8e Mon Sep 17 00:00:00 2001 From: Abdirahim Musse <33973272+abmusse@users.noreply.github.com> Date: Wed, 13 May 2020 17:54:59 -0500 Subject: [PATCH 2/4] fixup! ci: Add eslint action --- .github/workflows/ci.yml | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 8e52bf2e..27437a82 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -34,10 +34,9 @@ jobs: TKPASS: ${{ secrets.IBMI_PASSWORD }} eslint: - runs-on: ubuntu-latest steps: - uses: actions/checkout@v1 - - uses: hallee/eslint-action@master + - uses: stefanoeb/eslint-action@1.0.2 with: - repo-token: ${{ secrets.GITHUB_TOKEN }} + files: lib/ test/ From 79ae206ad7f63b453e3411336a56321f944b28aa Mon Sep 17 00:00:00 2001 From: Abdirahim Musse <33973272+abmusse@users.noreply.github.com> Date: Thu, 11 Jun 2020 11:25:05 -0500 Subject: [PATCH 3/4] fixup! fixup! ci: Add eslint action --- .github/workflows/ci.yml | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 27437a82..e663a9c7 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -36,7 +36,6 @@ jobs: eslint: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v1 - - uses: stefanoeb/eslint-action@1.0.2 - with: - files: lib/ test/ + - uses: actions/checkout@v2 + run: npm ci + run: npm run lint From 06e17c36823b2606357b161d436d28b94a9a74f9 Mon Sep 17 00:00:00 2001 From: Abdirahim Musse <33973272+abmusse@users.noreply.github.com> Date: Thu, 11 Jun 2020 11:35:05 -0500 Subject: [PATCH 4/4] fixup! fixup! fixup! ci: Add eslint action --- .github/workflows/ci.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index e663a9c7..01bb1d0f 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -37,5 +37,5 @@ jobs: runs-on: ubuntu-latest steps: - uses: actions/checkout@v2 - run: npm ci - run: npm run lint + - run: npm ci + - run: npm run lint