You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
core.setFailed(`Performance score is ${PERFORMANCE_SCORE}, which is below the threshold of ${threshold}.`);
65
+
if (MIXED_PERFORMANCE_SCORE < THRESHOLD) {
66
+
throw new Error(`Mixed template performance score ${MIXED_PERFORMANCE_SCORE} is below the threshold ${THRESHOLD}`);
67
+
}
68
+
69
+
if (MIXED_PERFORMANCE_SCORE >= V3_PERFORMANCE_SCORE) {
70
+
throw new Error(`Mixed template performance score ${MIXED_PERFORMANCE_SCORE} is not greater than V3 template performance score ${V3_PERFORMANCE_SCORE}`);
0 commit comments