1
0
Fork 0

Fix readme

pull/98/head
Jonathan Clem 2019-08-28 22:36:17 -04:00
parent 8b9dfa809b
commit 80fc75ef9c
No known key found for this signature in database
GPG Key ID: 48C5B22E9FD6E80F
1 changed files with 2 additions and 2 deletions

View File

@ -85,9 +85,9 @@ This library can also wrap chunks of output in foldable groups.
const core = require('@actions/core') const core = require('@actions/core')
// Manually wrap output // Manually wrap output
core.groupStart('Do some function') core.startGroup('Do some function')
doSomeFunction() doSomeFunction()
core.groupEnd() core.endGroup()
// Wrap an asynchronous function call // Wrap an asynchronous function call
const result = await core.group('Do something async', async () => { const result = await core.group('Do something async', async () => {