@@ -136,36 +136,6 @@ jobs:
136136 node-version : [18, 20, 22, 24]
137137 os : [ubuntu-latest, windows-latest]
138138 runs-on : ${{ matrix.os }}
139- steps :
140- - uses : actions/checkout@34e114876b0b11c390a56381ad16ebd13914f8d5 # v4
141- - uses : actions/setup-node@49933ea5288caeca8642d1e84afbd3f7d6820020 # v4
142- with :
143- node-version : ${{ matrix.node-version }}
144- - name : Use dependency cache
145- uses : actions/cache@0057852bfaa89a56745cba8c7296529d2fc39830 # v4
146- id : dependency-cache
147- with :
148- path : " **/node_modules"
149- key : ${{ runner.os }}-${{ hashFiles('**/package.json') }}-${{ hashFiles('**/yarn.lock') }}
150- - name : Install dependencies
151- run : yarn --frozen-lockfile --ignore-engines
152- if : steps.dependency-cache.outputs.cache-hit != 'true'
153- - name : Download build artifacts
154- uses : actions/download-artifact@d3f86a106a0bac45b974a628896c90dbdf5c8093 # v4
155- with :
156- name : dist-artifacts-${{ github.run_id }}
157- path : packages
158- - run : yarn test:integration
159-
160- test-integration-next :
161- needs : build
162- name : " Integration Tests Next (Node ${{ matrix.node-version }}, OS ${{ matrix.os }})"
163- strategy :
164- fail-fast : false
165- matrix :
166- node-version : [18, 20, 22, 24]
167- os : [ubuntu-latest, windows-latest]
168- runs-on : ${{ matrix.os }}
169139 steps :
170140 - uses : actions/checkout@34e114876b0b11c390a56381ad16ebd13914f8d5 # v4
171141 - uses : actions/setup-node@49933ea5288caeca8642d1e84afbd3f7d6820020 # v4
@@ -188,7 +158,7 @@ jobs:
188158 with :
189159 name : dist-artifacts-${{ github.run_id }}
190160 path : packages
191- - run : yarn test:integration-next
161+ - run : yarn test:integration
192162
193163 lint :
194164 needs : build
0 commit comments