Skip to content

Commit da29137

Browse files
committed
test: fix typo in test setup
1 parent dc9fe45 commit da29137

File tree

1 file changed

+2
-3
lines changed

1 file changed

+2
-3
lines changed

.github/workflows/run-tests.yml

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -42,19 +42,18 @@ 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 {
6059
core.setOutput('matrix', '["latest"]');}

0 commit comments

Comments
 (0)