Added more tests

This commit is contained in:
Corey Butler 2019-09-02 16:38:37 -05:00
parent 893fc250c9
commit a0ac8c2657

View File

@ -5,8 +5,16 @@ async function run() {
console.log(process.env)
try {
const myInput = core.getInput('myInput')
core.debug(`Hello ${myInput}`)
// const myInput = core.getInput('myInput')
// core.debug(`Hello ${myInput}`)
let dir = fs.readdirSync(path.resolve(process.env.GITHUB_WORKSPACE), { withFileTypes: true }).map(entry => {
return `${entry.isDirectory() ? '> ' : ' - '}${entry.name}`
}).join('\n')
core.debug(`Working Directory: ${process.env.GITHUB_WORKSPACE}:\n${dir}`)
core.warning(`Available environment variables:\n -> ${Object.keys(process.env).join('\n -> ')}`)
core.setOutput('')
} catch (error) {
core.setFailed(error.message)
}