Skip to content

Commit 938903f

Browse files
committed
Show output during test
1 parent 42582dd commit 938903f

File tree

5 files changed

+6
-5
lines changed

5 files changed

+6
-5
lines changed

.github/workflows/ci.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -62,4 +62,4 @@ jobs:
6262

6363
- name: Print Output
6464
id: output
65-
run: echo "${{ steps.test-action.outputs.path }}"
65+
run: ls -lach "${{ steps.test-action.outputs.path }}"

__tests__/main.test.ts

+2-2
Original file line numberDiff line numberDiff line change
@@ -37,12 +37,12 @@ describe('action', () => {
3737
setOutputMock = jest.spyOn(core, 'setOutput').mockImplementation()
3838
})
3939

40-
it('downloads 14.0.0', async () => {
40+
it('downloads 15.0.0', async () => {
4141
// Set the action's inputs as return values from core.getInput()
4242
getInputMock.mockImplementation(name => {
4343
switch (name) {
4444
case 'version':
45-
return '14.0.0'
45+
return '15.0.0'
4646
case 'unzip-to':
4747
return tmpDir
4848
default:

badges/coverage.svg

+1-1
Loading

dist/index.js

+1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/index.js.map

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)