From b147d157253a3f31813ab0b8ee0552be9e69dbe3 Mon Sep 17 00:00:00 2001 From: joshbenaron <73971531+joshbenaron@users.noreply.github.com> Date: Mon, 9 Aug 2021 13:58:40 +0100 Subject: [PATCH 1/2] Update db-tests.yml --- .github/workflows/db-tests.yml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/.github/workflows/db-tests.yml b/.github/workflows/db-tests.yml index 351372d..3ad4fc7 100644 --- a/.github/workflows/db-tests.yml +++ b/.github/workflows/db-tests.yml @@ -7,6 +7,10 @@ jobs: runs-on: ubuntu-20.04 steps: - uses: actions/checkout@v2.3.4 + - name: Install modules + run: yarn install --ignore-engines + - name: Run ESLint + run: yarn run --ignore-engines eslint . --ext .ts - uses: cachix/install-nix-action@v13 with: nix_path: nixpkgs=channel:nixos-unstable From 3b4400c082d173b91ef9a8fef3752594b2693ed5 Mon Sep 17 00:00:00 2001 From: joshbenaron <73971531+joshbenaron@users.noreply.github.com> Date: Mon, 9 Aug 2021 13:59:47 +0100 Subject: [PATCH 2/2] Delete eslint.yml --- .github/workflows/eslint.yml | 31 ------------------------------- 1 file changed, 31 deletions(-) delete mode 100644 .github/workflows/eslint.yml diff --git a/.github/workflows/eslint.yml b/.github/workflows/eslint.yml deleted file mode 100644 index 25003c8..0000000 --- a/.github/workflows/eslint.yml +++ /dev/null @@ -1,31 +0,0 @@ -# For most projects, this workflow file will not need changing; you simply need -# to commit it to your repository. -# -# You may wish to alter this file to override the set of languages analyzed, -# or to provide custom queries or build logic. -# -# ******** NOTE ******** -# We have attempted to detect the languages in your repository. Please check -# the `language` matrix defined below to confirm you have the correct set of -# supported CodeQL languages. -# -name: "Run ESLint" - -on: - push: - branches: [ joshbenaron-eslint-ci, master ] - pull_request: - # The branches below must be a subset of the branches above - branches: [master] - schedule: - - cron: "45 22 * * 6" - -jobs: - build: - runs-on: ubuntu-latest - steps: - - uses: actions/checkout@v2 - - name: Install modules - run: yarn install --ignore-engines - - name: Run ESLint - run: yarn run --ignore-engines eslint . --ext .ts