1
1
name : CI
2
2
3
- on :
4
- push :
5
- branches : [master]
6
- pull_request :
7
- branches : [master]
3
+ on : [push, pull_request, workflow_dispatch]
8
4
9
5
jobs :
10
6
build :
@@ -69,13 +65,15 @@ jobs:
69
65
node-version : ${{ matrix.node }}
70
66
cache : ' yarn'
71
67
68
+ - name : Download build artifact
69
+ uses : actions/download-artifact@v4
70
+ with :
71
+ name : package
72
+ path : .
73
+
72
74
- name : Install deps
73
75
run : yarn install
74
76
75
- # Build with the actual TS version in the repo
76
- - name : Pack
77
- run : yarn build && yarn pack
78
-
79
77
- name : Install build artifact
80
78
run : yarn add ./package.tgz
81
79
@@ -85,11 +83,12 @@ jobs:
85
83
86
84
# Remove config line that points "reselect" to the `src` folder,
87
85
# so that the typetest will use the installed version instead
88
- - run : sed -i -e /@remap-prod-remove-line/d tsconfig.base.json vitest.config.mts
86
+ - name : Erase path aliases
87
+ run : sed -i -e /@remap-prod-remove-line/d tsconfig.base.json vitest.config.mts
89
88
90
89
- name : Test types
91
90
run : |
92
- ./node_modules/.bin/ tsc --version
91
+ yarn tsc --version
93
92
yarn type-tests
94
93
95
94
are-the-types-wrong :
@@ -105,7 +104,8 @@ jobs:
105
104
- name : Checkout repo
106
105
uses : actions/checkout@v4
107
106
108
- - uses : actions/download-artifact@v4
107
+ - name : Download build artifact
108
+ uses : actions/download-artifact@v4
109
109
with :
110
110
name : package
111
111
path : .
@@ -147,29 +147,23 @@ jobs:
147
147
- name : Clone RTK repo
148
148
run : git clone https://github.com/reduxjs/redux-toolkit.git ./redux-toolkit
149
149
150
+ - name : Cache example deps
151
+ uses : actions/cache@v4
152
+ with :
153
+ path : ./redux-toolkit/examples/publish-ci/${{ matrix.example }}/node_modules
154
+ key : test-published-artifact-${{ matrix.example }}-node_modules
155
+
150
156
- name : Check folder contents
151
157
run : ls -l .
152
158
153
- # Some weird install diffs with cloning this repo and installing.
154
- # Just kill the lockfiles for this repo and RTK and reinstall
155
-
156
- - name : Remove top lockfile
157
- run : rm yarn.lock && rm package.json
158
-
159
- - name : Remove RTK lockfile
160
- working-directory : ./redux-toolkit
161
- run : rm yarn.lock && rm package.json
162
-
163
- - name : Install deps
159
+ - name : Install example deps
164
160
working-directory : ./redux-toolkit/examples/publish-ci/${{ matrix.example }}
165
- env :
166
- YARN_ENABLE_IMMUTABLE_INSTALLS : false
167
- run : rm yarn.lock && yarn install
161
+ run : yarn install
168
162
169
163
- name : Install Playwright browser if necessary
170
164
working-directory : ./redux-toolkit/examples/publish-ci/${{ matrix.example }}
171
165
continue-on-error : true
172
- run : yarn playwright install
166
+ run : yarn playwright install || true
173
167
174
168
- uses : actions/download-artifact@v4
175
169
with :
@@ -188,17 +182,6 @@ jobs:
188
182
working-directory : ./redux-toolkit/examples/publish-ci/${{ matrix.example }}
189
183
run : yarn info reselect && yarn why reselect
190
184
191
- - name : Set up JDK 17 for React Native build
192
- if : matrix.example == 'react-native'
193
- uses : actions/setup-java@v4
194
- with :
195
- java-version : ' 17.x'
196
- distribution : ' temurin'
197
-
198
- - name : Check MSW version
199
- working-directory : ./redux-toolkit/examples/publish-ci/${{ matrix.example }}
200
- run : yarn why msw
201
-
202
185
- name : Build example
203
186
working-directory : ./redux-toolkit/examples/publish-ci/${{ matrix.example }}
204
187
env :
@@ -208,3 +191,43 @@ jobs:
208
191
- name : Run test step
209
192
working-directory : ./redux-toolkit/examples/publish-ci/${{ matrix.example }}
210
193
run : yarn test
194
+
195
+ test-dist :
196
+ name : Run local tests against build artifact
197
+ needs : [build]
198
+ runs-on : ubuntu-latest
199
+ strategy :
200
+ fail-fast : false
201
+ matrix :
202
+ node : ['20.x']
203
+
204
+ steps :
205
+ - name : Checkout repo
206
+ uses : actions/checkout@v4
207
+
208
+ - name : Use node ${{ matrix.node }}
209
+ uses : actions/setup-node@v4
210
+ with :
211
+ node-version : ${{ matrix.node }}
212
+ cache : ' yarn'
213
+
214
+ - name : Install dependencies
215
+ run : yarn install
216
+
217
+ - name : Download build artifact
218
+ uses : actions/download-artifact@v4
219
+ with :
220
+ name : package
221
+ path : .
222
+
223
+ - name : Check folder contents
224
+ run : ls -lah
225
+
226
+ - name : Install build artifact
227
+ run : yarn add ./package.tgz
228
+
229
+ - name : Erase path aliases
230
+ run : sed -i -e /@remap-prod-remove-line/d ./tsconfig.base.json ./vitest.config.mts
231
+
232
+ - name : Run local tests against the build artifact
233
+ run : yarn test
0 commit comments