From 5f11191fe92c6f60ff058ae9b16d3ff07eeaea85 Mon Sep 17 00:00:00 2001 From: Luke Vella Date: Mon, 10 Jun 2024 22:26:00 +0100 Subject: [PATCH] =?UTF-8?q?=F0=9F=91=B7=20Avoid=20skipping=20linting=20and?= =?UTF-8?q?=20type=20check=20(#1145)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .github/workflows/ci.yml | 22 ---------------------- 1 file changed, 22 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index dad2d983f..d1af53730 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -12,27 +12,9 @@ concurrency: cancel-in-progress: true jobs: - changes: - name: Check for changes - runs-on: ubuntu-latest - permissions: - pull-requests: read - outputs: - has-files-requiring-all-checks: ${{ steps.filter.outputs.has-files-requiring-all-checks }} - steps: - - uses: actions/checkout@v4 - - uses: dorny/paths-filter@v3 - id: filter - with: - filters: | - has-files-requiring-all-checks: - - "!(**.md|.github)" - type-check: name: Type check runs-on: ubuntu-latest - needs: changes - if: ${{ needs.changes.outputs.has-files-requiring-all-checks == 'true' }} steps: - uses: actions/checkout@v4 - uses: ./.github/actions/setup-node @@ -44,8 +26,6 @@ jobs: linting: name: Linting runs-on: ubuntu-latest - needs: changes - if: ${{ needs.changes.outputs.has-files-requiring-all-checks == 'true' }} steps: - uses: actions/checkout@v4 - uses: ./.github/actions/setup-node @@ -56,7 +36,6 @@ jobs: unit-tests: name: Unit tests - needs: changes runs-on: ubuntu-latest steps: - uses: actions/checkout@v4 @@ -69,7 +48,6 @@ jobs: # Label of the container job integration-tests: name: Integration tests - needs: changes runs-on: ubuntu-latest steps: - uses: actions/checkout@v4