Run prettier, to pass format-check

This commit is contained in:
Dave Olsthoorn 2020-08-11 19:20:52 +02:00 committed by Dave Olsthoorn
parent f4de3ae372
commit 469d66c201
3 changed files with 32 additions and 37 deletions

View file

@ -1,5 +1,5 @@
describe('setup-android', () => { describe('setup-android', () => {
it('has sanity', async () => { it('has sanity', async () => {
expect(true) expect(true)
}) })
}) })

View file

@ -25,12 +25,7 @@ export async function install(): Promise<void> {
fs.mkdirSync(ANDROID_REPOSITORIES_DIR, {recursive: true}) fs.mkdirSync(ANDROID_REPOSITORIES_DIR, {recursive: true})
fs.closeSync(fs.openSync(ANDROID_REPOSITORIES_CFG, 'w')) fs.closeSync(fs.openSync(ANDROID_REPOSITORIES_CFG, 'w'))
const acceptBuffer = Buffer.from( const acceptBuffer = Buffer.from(Array(10).fill('y').join('\n'), 'utf8')
Array(10)
.fill('y')
.join('\n'),
'utf8'
)
let sdkManager = '' let sdkManager = ''
if (process.platform === 'linux') { if (process.platform === 'linux') {

View file

@ -1,26 +1,26 @@
import * as core from '@actions/core' import * as core from '@actions/core'
import * as path from 'path' import * as path from 'path'
import {ANDROID_SDK_ROOT, ANNOTATION_MATCHERS} from './constants' import {ANDROID_SDK_ROOT, ANNOTATION_MATCHERS} from './constants'
import {preGradleCache, preAndroidCache, preGradleWrapper} from './cache' import {preGradleCache, preAndroidCache, preGradleWrapper} from './cache'
import {install} from './install' import {install} from './install'
async function run(): Promise<void> { async function run(): Promise<void> {
// process all caching but wait for them to all complete // process all caching but wait for them to all complete
await Promise.all([preGradleWrapper(), preGradleCache(), preAndroidCache()]) await Promise.all([preGradleWrapper(), preGradleCache(), preAndroidCache()])
await install() await install()
core.exportVariable('ANDROID_HOME', ANDROID_SDK_ROOT) core.exportVariable('ANDROID_HOME', ANDROID_SDK_ROOT)
core.exportVariable('ANDROID_SDK_ROOT', ANDROID_SDK_ROOT) core.exportVariable('ANDROID_SDK_ROOT', ANDROID_SDK_ROOT)
core.addPath(path.join(ANDROID_SDK_ROOT, 'tools', 'bin')) core.addPath(path.join(ANDROID_SDK_ROOT, 'tools', 'bin'))
core.addPath(path.join(ANDROID_SDK_ROOT, 'platform-tools')) core.addPath(path.join(ANDROID_SDK_ROOT, 'platform-tools'))
core.debug('add matchers') core.debug('add matchers')
const matchersPath = path.join(__dirname, '..', '..', '.github') const matchersPath = path.join(__dirname, '..', '..', '.github')
for (const matcher of ANNOTATION_MATCHERS) { for (const matcher of ANNOTATION_MATCHERS) {
console.log(`##[add-matcher]${path.join(matchersPath, matcher)}`) console.log(`##[add-matcher]${path.join(matchersPath, matcher)}`)
} }
} }
run() run()