Skip to content

Commit 4d493ab

Browse files
Merge pull request #44 from lifeomic/publish-patch
fix: NO-TICKET - bogus change to trigger first release under semantic…
2 parents d273f62 + 2f9dab2 commit 4d493ab

File tree

2 files changed

+2
-4
lines changed

2 files changed

+2
-4
lines changed

.github/lifeomic-probot.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
enforceSemanticCommits: false
1+
enforceSemanticCommits: true

test/index.test.ts

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,9 +4,7 @@ import {
44
AttemptOptions, AttemptContext
55
} from '../src';
66

7-
function almostEqual (a: number, b: number, tolerance: number) {
8-
return Math.abs(a - b) <= tolerance;
9-
}
7+
const almostEqual = (a: number, b: number, tolerance: number) => Math.abs(a - b) <= tolerance;
108

119
const DELAY_TOLERANCE = parseInt(process.env.DELAY_TOLERANCE || '', 10) || 100;
1210

0 commit comments

Comments
 (0)