-
Notifications
You must be signed in to change notification settings - Fork 66
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
if-nodejs-pr-testing.yml does not test on Windows #278
Comments
thanks for reporting we cannot remove the check as then we are back in problem that PR tests run on every single PR, even these from bots where PR test is not needed - so yeah - our CI will cry we need to improve check and basically have different approach if os is windows looks like in general a known issue -> actions/runner#2224 most voted solution is actions/runner#2224 but to be honest adding @jonaslagoni the best approach would be if you could apply the fix first in your repo, and if it works there, then we can push fix through here? thoughts? |
Trying here: asyncapi/modelina#1912 |
oh, yeah, thanks I also noticed we already use this approach in another step https://github.com/asyncapi/.github/blob/master/.github/workflows/if-nodejs-pr-testing.yml#L48 |
Problem workflow:
.github/.github/workflows/if-nodejs-pr-testing.yml
Line 19 in 3b27869
The following code is not compatible with Windows:
More specifically, I think the problem lies with
run: echo "shouldrun=true" >> $GITHUB_OUTPUT
.We have two options as I see it.
run
command to be compatible with any systemNot sure which is the best approach.
The text was updated successfully, but these errors were encountered: