Fix build errors from github api update

This commit is contained in:
Nick Cipollo
2023-12-11 08:37:08 -05:00
parent 0300282a53
commit 02a91b5ddd
6 changed files with 26398 additions and 5476 deletions

View File

@@ -240,6 +240,11 @@ describe('Inputs', () => {
mockGetInput.mockReturnValueOnce('true')
expect(inputs.makeLatest).toBe('true')
})
it('returns undefined', () => {
mockGetInput.mockReturnValueOnce('something_else')
expect(inputs.makeLatest).toBe(undefined)
})
})
describe('owner', () => {