diff --git a/.github/workflows/pullrequest.yml b/.github/workflows/pullrequest.yml index 952678397ad0..e40ac5fcf652 100644 --- a/.github/workflows/pullrequest.yml +++ b/.github/workflows/pullrequest.yml @@ -291,32 +291,15 @@ jobs: - name: Setup yarn run: corepack enable - - name: Get cache - id: get-cache - uses: ./.github/actions/get-cache - with: - github-token: ${{ secrets.GITHUB_TOKEN }} - keys: ${{ needs.prepare.outputs.CACHE_KEYS }} - enable-cache: 'node_modules,generated-files' - - - name: Cache Node Modules - id: cache-node-modules - uses: actions/cache@v3 - with: - path: | - node_modules - .yarn/cache - key: ${{ runner.os }}-node-modules-${{ hashFiles('yarn.lock') }} - restore-keys: | - ${{ runner.os }}-node-modules- - - name: Install Dependencies - if: steps.cache-node-modules.outputs.cache-hit != 'true' run: yarn install --immutable - name: Running e2e tests run: yarn e2e "${AFFECTED_PROJECT}" + - name: Stop and Clean Docker Compose + run: docker compose down + linting-workspace: needs: - prepare