We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 41b9eb6 + 8e852ca commit 7d3a358Copy full SHA for 7d3a358
.github/workflows/test-e2e.yml
@@ -56,16 +56,16 @@ jobs:
56
run: |
57
if [ "${{ github.event_name }}" == "workflow_dispatch" ]; then
58
VERSION_SELECTORS=[${{ github.event.inputs.versions }}]
59
- echo "group=[1, 2, 3, 4]" >> $GITHUB_OUTPUT
60
- echo "total=4" >> $GITHUB_OUTPUT
+ echo "group=[1, 2, 3, 4, 5, 6]" >> $GITHUB_OUTPUT
+ echo "total=6" >> $GITHUB_OUTPUT
61
elif [ "${{ github.event_name }}" == "pull_request" ]; then
62
VERSION_SELECTORS=[\"latest\"]
63
64
65
else
66
- VERSION_SELECTORS=[\"latest\",\"canary\",\"14.2.15\",\"13.5.1\"]
67
68
+ VERSION_SELECTORS=[\"latest\",\"canary\"]
69
fi
70
71
VERSION_SPEC="["
tests/netlify-deploy.ts
@@ -90,6 +90,10 @@ export class NextDeployInstance extends NextInstance {
90
command = "npm run build"
91
publish = ".next"
92
93
+ [build.environment]
94
+ # this allows to use "CanaryOnly" features with next@latest
95
+ NEXT_PRIVATE_TEST_MODE = "e2e"
96
+
97
[[plugins]]
98
package = "${runtimePackageName}"
99
`
0 commit comments