From f4d47aa780dda635379b01f67c3df3cf47e2e2c9 Mon Sep 17 00:00:00 2001 From: Francois Best Date: Wed, 6 Nov 2024 20:20:35 +0100 Subject: [PATCH] chore: Fix Next.js release CI --- .github/workflows/test-against-nextjs-release.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/test-against-nextjs-release.yml b/.github/workflows/test-against-nextjs-release.yml index c688e331..ce48cb0d 100644 --- a/.github/workflows/test-against-nextjs-release.yml +++ b/.github/workflows/test-against-nextjs-release.yml @@ -33,7 +33,7 @@ jobs: - name: Install Next.js version ${{ inputs.version }} run: pnpm add --filter e2e-next --filter nuqs next@${{ inputs.version }} - name: Run integration tests - run: pnpm run test -- --filter e2e-next + run: pnpm run test --filter e2e-next env: BASE_PATH: ${{ matrix.base-path && matrix.base-path || '/' }} REACT_COMPILER: ${{ matrix.react-compiler }} @@ -44,7 +44,7 @@ jobs: uses: actions/upload-artifact@b4b15b8c7c6ac21ea08fcf65892d2ee8f75cf882 if: failure() with: - path: packages/e2e/cypress/screenshots + path: packages/e2e-next/cypress/screenshots name: ci-next-${{ inputs.version }}${{ matrix.base-path && '-basePath' || ''}}${{ matrix.react-compiler && '-react-compiler' || ''}} - uses: 47ng/actions-slack-notify@main name: Notify on Slack