We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
NPM 8 throws an error on peer dependency mismatches. I have an intentional mismatch that I need to ignore with the --legacy-peer-deps install flag.
--legacy-peer-deps
It would be great if there was an option to pass install flags to the install step.
- uses: andresz1/size-limit-action@v1 with: github_token: ${{ secrets.GITHUB_TOKEN }} install_flags: '--legacy-peer-deps'
Right now, I'm trying to use skip_step: install so that I can manually install, but I'm having issues with that approach #81
skip_step: install
It seems like it would only be a matter of splitting and passing the flags as the second argument array to exec on this line.
exec
size-limit-action/src/Term.ts
Line 36 in 87e4919
I might try to make a PR to help out.
The text was updated successfully, but these errors were encountered:
did anyone create a PR for install_flags? skip: install also not working for me
install_flags
skip: install
Sorry, something went wrong.
No branches or pull requests
NPM 8 throws an error on peer dependency mismatches. I have an intentional mismatch that I need to ignore with the
--legacy-peer-deps
install flag.It would be great if there was an option to pass install flags to the install step.
Right now, I'm trying to use
skip_step: install
so that I can manually install, but I'm having issues with that approach #81It seems like it would only be a matter of splitting and passing the flags as the second argument array to
exec
on this line.size-limit-action/src/Term.ts
Line 36 in 87e4919
I might try to make a PR to help out.
The text was updated successfully, but these errors were encountered: