Skip to content

Commit a7ca589

Browse files
Remove syntax errors
1 parent f8d4845 commit a7ca589

1 file changed

Lines changed: 5 additions & 5 deletions

File tree

‎.github/workflows/run-luau-tests.yml‎

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -119,7 +119,7 @@ jobs:
119119
const convertSecondsToSmallestRelevantUnit = (seconds) => {
120120
if (seconds < 0.001) {
121121
return `${seconds * 1000000} microseconds`;
122-
} elseif (seconds < 1) {
122+
} else if (seconds < 1) {
123123
return `${seconds * 1000} milliseconds`;
124124
} else {
125125
return `${seconds} seconds`;
@@ -151,10 +151,10 @@ jobs:
151151
152152
throw new Error("A test case failed.");
153153
154-
end;
155-
154+
};
155+
156156
} catch (error) {
157-
157+
158158
core.setFailed(error);
159-
159+
160160
}

0 commit comments

Comments
 (0)