File tree 2 files changed +87
-964
lines changed
2 files changed +87
-964
lines changed Original file line number Diff line number Diff line change @@ -127,12 +127,20 @@ jobs:
127
127
- name : Check folder contents
128
128
run : ls -l .
129
129
130
+ # Some weird install diffs with cloning this repo and installing.
131
+ # Just kill the lockfiles for React-Redux and RTK and reinstall
132
+
133
+ - name : Remove React-Redux lockfile
134
+ run : rm yarn.lock && rm package.json
135
+
136
+ - name : Remove RTK lockfile
137
+ working-directory : ./redux-toolkit
138
+ run : rm yarn.lock && rm package.json
139
+
130
140
- name : Install deps
131
141
working-directory : ./redux-toolkit/examples/publish-ci/${{ matrix.example }}
132
- # Some weird install diffs with cloning this repo and installing.
133
- # Don't care about lockfile diffs, so let it change.
134
- # Note the Bash-ism to unset the env var
135
- run : CI= yarn install
142
+
143
+ run : rm yarn.lock && YARN_ENABLE_IMMUTABLE_INSTALLS=false yarn install
136
144
137
145
- uses : actions/download-artifact@v2
138
146
with :
You can’t perform that action at this time.
0 commit comments