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 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