We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent bef5fbf commit 3f2eec2Copy full SHA for 3f2eec2
.github/workflows/verifyVersion.js
@@ -58,9 +58,10 @@ module.exports = async (github, context) => {
58
59
// We support N-2 minor versions, and the latest major.
60
function isVersionSupported(actualVersion, latestVersion) {
61
- return;
62
- actualVersion.major >= latestVersion.major &&
63
- actualVersion.minor >= latestVersion.minor - 2;
+ return (
+ actualVersion.major >= latestVersion.major &&
+ actualVersion.minor >= latestVersion.minor - 2
64
+ );
65
}
66
67
// Assumes that releases are sorted in the order of recency (i.e. most recent releases are earlier in the list)
0 commit comments