diff --git a/.github/workflows/build_and_test.yml b/.github/workflows/build_and_test.yml index 8938abd10cd1b..87c01acdda33d 100644 --- a/.github/workflows/build_and_test.yml +++ b/.github/workflows/build_and_test.yml @@ -704,6 +704,7 @@ jobs: export __NEXT_CACHE_COMPONENTS=true export __NEXT_EXPERIMENTAL_DEBUG_CHANNEL=true export NEXT_EXTERNAL_TESTS_FILTERS="test/cache-components-tests-manifest.json" + export IS_WEBPACK_TEST=1 export NEXT_E2E_TEST_TIMEOUT=240000 export GH_PR_NUMBER=${{ github.event.pull_request && github.event.pull_request.number || '' }} node scripts/test-new-tests.mjs \ @@ -935,7 +936,7 @@ jobs: export __NEXT_CACHE_COMPONENTS=true export __NEXT_EXPERIMENTAL_DEBUG_CHANNEL=true export NEXT_EXTERNAL_TESTS_FILTERS="test/cache-components-tests-manifest.json" - export IS_WEBPACK_TEST=1 + export IS_TURBOPACK_TEST=1 node run-tests.js \ --timings \ @@ -959,7 +960,7 @@ jobs: export __NEXT_EXPERIMENTAL_DEBUG_CHANNEL=true export NEXT_EXTERNAL_TESTS_FILTERS="test/cache-components-tests-manifest.json" export NEXT_TEST_MODE=dev - export IS_WEBPACK_TEST=1 + export IS_TURBOPACK_TEST=1 node run-tests.js \ --timings \ @@ -984,7 +985,7 @@ jobs: export __NEXT_EXPERIMENTAL_DEBUG_CHANNEL=true export NEXT_EXTERNAL_TESTS_FILTERS="test/cache-components-tests-manifest.json" export NEXT_TEST_MODE=start - export IS_WEBPACK_TEST=1 + export IS_TURBOPACK_TEST=1 node run-tests.js \ --timings \ diff --git a/test/cache-components-tests-manifest.json b/test/cache-components-tests-manifest.json index 5b3ba04d4e7d6..01459b572040e 100644 --- a/test/cache-components-tests-manifest.json +++ b/test/cache-components-tests-manifest.json @@ -338,8 +338,11 @@ "test/integration/app-types/app-types.test.ts", "test/production/app-dir-edge-runtime-with-wasm/index.test.ts", "test/production/app-dir-prevent-304-caching/index.test.ts", + "test/production/app-dir/actions-tree-shaking/basic/basic-edge.test.ts", + "test/production/app-dir/actions-tree-shaking/mixed-module-actions/mixed-module-actions-edge.test.ts", "test/production/app-dir/actions-tree-shaking/reexport/reexport-edge.test.ts", "test/production/app-dir/actions-tree-shaking/reexport/reexport.test.ts", + "test/production/app-dir/actions-tree-shaking/shared-module-actions/shared-module-actions-edge.test.ts", "test/production/app-dir/actions-tree-shaking/use-effect-actions/use-effect-actions-edge.test.ts", "test/production/app-dir/app-fetch-build-cache/app-fetch-build-cache.test.ts", "test/production/app-dir/build-output-tree-view/build-output-tree-view.test.ts",