Skip to content

Commit 3f2eec2

Browse files
author
Olga Zinoveva
committed
fixing a stray semicolon :/
1 parent bef5fbf commit 3f2eec2

File tree

1 file changed

+4
-3
lines changed

1 file changed

+4
-3
lines changed

.github/workflows/verifyVersion.js

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -58,9 +58,10 @@ module.exports = async (github, context) => {
5858

5959
// We support N-2 minor versions, and the latest major.
6060
function isVersionSupported(actualVersion, latestVersion) {
61-
return;
62-
actualVersion.major >= latestVersion.major &&
63-
actualVersion.minor >= latestVersion.minor - 2;
61+
return (
62+
actualVersion.major >= latestVersion.major &&
63+
actualVersion.minor >= latestVersion.minor - 2
64+
);
6465
}
6566

6667
// Assumes that releases are sorted in the order of recency (i.e. most recent releases are earlier in the list)

0 commit comments

Comments
 (0)