|
39 | 39 | NETLIFY_SITE_ID: 1d5a5c76-d445-4ae5-b694-b0d3f2e2c395 |
40 | 40 | NEXT_TEST_CONTINUE_ON_ERROR: 1 |
41 | 41 | next-path: next.js |
42 | | - runtime-path: next-runtime-minimal |
| 42 | + runtime-path: next-runtime |
43 | 43 | GH_TOKEN: ${{ github.token }} |
44 | 44 | jobs: |
45 | 45 | setup: |
@@ -143,7 +143,7 @@ jobs: |
143 | 143 | uses: actions/cache@v4 |
144 | 144 | with: |
145 | 145 | path: ${{ steps.npm-cache.outputs.PATH }} |
146 | | - key: node-cache-${{ hashFiles('next-runtime-minimal/package-lock.json') }} |
| 146 | + key: node-cache-${{ hashFiles('next-runtime/package-lock.json') }} |
147 | 147 | restore-keys: | |
148 | 148 | node-cache- |
149 | 149 |
|
@@ -191,11 +191,11 @@ jobs: |
191 | 191 | run: | |
192 | 192 | # This is when the manifest version was changed |
193 | 193 | if [ `npx semver -p -r ">=14.0.4-canary.26" ${{ matrix.version_spec.version }}` ]; then |
194 | | - echo "filters=../next-runtime-minimal/tests/netlify-e2e.cjs" >> $GITHUB_OUTPUT |
195 | | - echo "skip-retry=../next-runtime-minimal/tests/e2e-skip-retry.json" >> $GITHUB_OUTPUT |
| 194 | + echo "filters=../next-runtime/tests/netlify-e2e.cjs" >> $GITHUB_OUTPUT |
| 195 | + echo "skip-retry=../next-runtime/tests/e2e-skip-retry.json" >> $GITHUB_OUTPUT |
196 | 196 | else |
197 | | - echo "filters=../next-runtime-minimal/tests/netlify-e2e-legacy.json" >> $GITHUB_OUTPUT |
198 | | - echo "skip-retry=../next-runtime-minimal/tests/e2e-skip-retry-legacy.json" >> $GITHUB_OUTPUT |
| 197 | + echo "filters=../next-runtime/tests/netlify-e2e-legacy.json" >> $GITHUB_OUTPUT |
| 198 | + echo "skip-retry=../next-runtime/tests/e2e-skip-retry-legacy.json" >> $GITHUB_OUTPUT |
199 | 199 | fi |
200 | 200 |
|
201 | 201 | - name: run tests |
@@ -243,7 +243,7 @@ jobs: |
243 | 243 | - name: Get and format Github issues |
244 | 244 | if: success() || failure() |
245 | 245 | run: | |
246 | | - gh issue list --label "Next.js e2e test failure" --json number,body > report/issues.json |
| 246 | + gh issue list --label "Next.js e2e test failure" --json url,body > report/issues.json |
247 | 247 | deno run -A tools/deno/ghIssues2json.ts tests/test-config.json report/issues.json |
248 | 248 |
|
249 | 249 | - name: Publish Test Report |
|
0 commit comments