-
-
Notifications
You must be signed in to change notification settings - Fork 1.2k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
restore size job #3819
restore size job #3819
Conversation
Review or Edit in CodeSandboxOpen the branch in Web Editor • VS Code • Insiders |
....... huh. Now I'm trying to remember why we (I?) apparently even renamed this in the first place :) Oh. The job immediately fails with:
That might have been why? I think there might have been a conflict with our use of Yarn v3, and this action trying to install things via NPM somehow. Could you look into that? Thanks! |
✅ Deploy Preview for redux-starter-kit-docs ready!
To edit notification comments on pull requests, go to your Netlify site configuration. |
This pull request is automatically built and testable in CodeSandbox. To see build info of the built libraries, click here or the icon next to each commit SHA. Latest deployment of this branch, based on commit 7a0b4f5:
|
Just read your conversation on this thread andresz1/size-limit-action#77, I'm trying with the latest action version to see if it solves our problem, otherwise might have to use any other/custom action for this one. |
no luck :( |
Yeah, Checked this issue, Seems like only option is to create fake yarn.lock file inside packages/toolkit folder as the action version with fix is not published yet andresz1/size-limit-action#87, or to use other action for it. |
Just pushed a fake yarn.lock to see if it fixes the issue |
Assuming it does work: could we de-commit the fake |
Okay, latest error:
I... unfortunately mostly know how to work around this :( So there's two options here, I think. One is to delete the fake The other is to swipe the hack I used over in the React-Redux repo for a CI task: - name: Install deps
working-directory: ./redux-toolkit/examples/publish-ci/${{ matrix.example }}
run: rm yarn.lock && YARN_ENABLE_IMMUTABLE_INSTALLS=false yarn install && YARN_ENABLE_IMMUTABLE_INSTALLS=false yarn add msw@latest |
Removed the yarn.lock file from commit, doing the yarn install in a separate step with |
Looks like the action is still running into the NPM issues:
|
Superseded by later efforts, thanks! |
No description provided.