@@ -42,28 +42,27 @@ jobs:
4242 versionsToTest,
4343 runOnWindows
4444 }
45-
4645 - name : Set Next.js versions to test
4746 id : set-matrix
4847 uses : actions/github-script@v8
4948 with :
5049 script : |
51- const { versionsToTest, runOnWindows} = ${{ steps.check-labels.outputs.result }} ?? {}
50+ const { versionsToTest, runOnWindows } = ${{ steps.check-labels.outputs.result }} ?? {}
5251
5352 if ('${{ github.event_name }}' === 'workflow_dispatch') {
5453 core.setOutput('matrix', '${{ github.event.inputs.versions }}');
5554 } else if ('${{ github.event_name }}' === 'schedule' || versionsToTest === 'all') {
5655 core.setOutput('matrix', '["latest", "canary", "14.2.15", "13.5.1"]');
57- } else if () versionsToTest === 'latest-and-canary') {
56+ } else if (versionsToTest === 'latest-and-canary') {
5857 core.setOutput('matrix', '["latest", "canary"]');
5958 } else {
60- core.setOutput('matrix', '["latest"]');}
59+ core.setOutput('matrix', '["latest"]');
6160 }
6261
6362 if (runOnWindows) {
64- core.setOutput('os', '['' ubuntu-latest', ' windows-2025' ]');
63+ core.setOutput('os', '[" ubuntu-latest", " windows-2025" ]');
6564 } else {
66- core.setOutput('os', '['' ubuntu-latest' ]');
65+ core.setOutput('os', '[" ubuntu-latest" ]');
6766 }
6867
6968 e2e :
0 commit comments