Skip to content

Commit

Permalink
Fix build errors from github api update
Browse files Browse the repository at this point in the history
  • Loading branch information
ncipollo committed Dec 11, 2023
1 parent 0300282 commit 02a91b5
Show file tree
Hide file tree
Showing 6 changed files with 26,483 additions and 5,561 deletions.
5 changes: 5 additions & 0 deletions __tests__/Inputs.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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', () => {
Expand Down
Loading

0 comments on commit 02a91b5

Please sign in to comment.