Skip to content

Commit 8d4585f

Browse files
committed
ci: exclude windows runs when testing older versions of next.js
1 parent 5dac3e3 commit 8d4585f

File tree

1 file changed

+6
-1
lines changed

1 file changed

+6
-1
lines changed

.github/workflows/run-tests.yml

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -114,13 +114,18 @@ jobs:
114114

115115
test:
116116
needs: setup
117-
runs-on: ${{ matrix.os }}
118117
strategy:
119118
fail-fast: false
120119
matrix:
121120
shard: [1, 2, 3, 4, 5, 6, 7, 8]
122121
os: [ubuntu-latest, windows-latest]
123122
version: ${{ fromJson(needs.setup.outputs.matrix) }}
123+
exclude:
124+
- os: windows-latest
125+
version:
126+
- '14.2.15'
127+
- '13.5.1'
128+
runs-on: ${{ matrix.os }}
124129
steps:
125130
- uses: actions/checkout@v4
126131
- name: 'Install Node'

0 commit comments

Comments
 (0)