use action config, don't require github token

fixes #11
This commit is contained in:
Denis Isaev
2020-05-09 16:27:58 +03:00
parent 6993abb7cd
commit 27e14e0f3f
9 changed files with 150 additions and 48195 deletions

View File

@ -9,8 +9,8 @@ import { findLintVersion } from "./version"
const execShellCommand = promisify(exec)
async function prepareLint(): Promise<string> {
const lintVersion = await findLintVersion()
return await installLint(lintVersion)
const versionConfig = await findLintVersion()
return await installLint(versionConfig)
}
async function prepareEnv(): Promise<string> {