-
-
Notifications
You must be signed in to change notification settings - Fork 2.8k
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
Results of weekly scheduled smoke test #3327
Comments
cc @AriPerkkio seems unrelated to the linter? |
ah, looking at the actual output, it’s just that there were so many failures :-) on it. |
Yes, looks like the The custom Github Action |
Hmm, unfortunately it seems the actions output isn't actually helpful - there's no stack trace or anything. Any idea how i can get to repro code? |
The action does output the results as "raw output" in CI logs - exactly for cases like this. It's meant to be a backup. By looking at the CI's logs in text-only mode these are easily visible. CTRL + F > search for Here are the first three results: Repository: iam4x/bobarr 26 | return (
27 | <RatingDetailsStyles>
> 28 | {Object.entries(allRatings)?.map(([key, value], index) => {
29 | const rate = value?.split(/(?=[%, /])/);
30 |
31 | if (!rate) return null;
Repository: yanqirenshi/D3.Deployment 749 |
750 | function parseTypenames(typenames, types) {
> 751 | return typenames.trim().split(/^|\s+/).map(function(t) {
752 | var name = "", i = t.indexOf(".");
753 | if (i >= 0) name = t.slice(i + 1), t = t.slice(0, i);
754 | if (t && !types.hasOwnProperty(t)) throw new Error("unknown type: " + t);
Repository: yanqirenshi/D3.Deployment 749 |
750 | function parseTypenames(typenames, types) {
> 751 | return typenames.trim().split(/^|\s+/).map(function(t) {
752 | var name = "", i = t.indexOf(".");
753 | if (i >= 0) name = t.slice(i + 1), t = t.slice(0, i);
754 | if (t && !types.hasOwnProperty(t)) throw new Error("unknown type: " + t);
|
Something went wrong.
Click to expand
The text was updated successfully, but these errors were encountered: