Skip to content

Commit f5b9522

Browse files
authored
ci: exclude windows runs when testing older versions of next.js (#2903)
1 parent 1fd0112 commit f5b9522

File tree

1 file changed

+6
-1
lines changed

1 file changed

+6
-1
lines changed

.github/workflows/run-tests.yml

+6-1
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: '13.5.1'
126+
- os: windows-latest
127+
version: '14.2.15'
128+
runs-on: ${{ matrix.os }}
124129
steps:
125130
- uses: actions/checkout@v4
126131
- name: 'Install Node'

0 commit comments

Comments
 (0)