2020-05-19 20:25:54 +07:00
import * as core from '@actions/core' ;
import * as installer from './installer' ;
import * as auth from './authutil' ;
import * as path from 'path' ;
import { URL } from 'url' ;
2020-09-03 19:40:40 +07:00
import os = require ( 'os' ) ;
2020-05-19 20:25:54 +07:00
export async function run() {
try {
//
// Version is optional. If supplied, install / use from the tool cache
// If not supplied then task is still used to setup proxy, auth, etc...
//
let version = core . getInput ( 'node-version' ) ;
if ( ! version ) {
version = core . getInput ( 'version' ) ;
}
2020-12-09 05:15:38 +07:00
let arch = core . getInput ( 'architecture' ) ;
2020-09-06 23:09:41 +07:00
2020-12-09 05:15:38 +07:00
// if architecture supplied but node-version is not
2020-09-06 23:09:41 +07:00
// if we don't throw a warning, the already installed x64 node will be used which is not probably what user meant.
if ( arch && ! version ) {
core . warning (
2020-12-09 05:15:38 +07:00
'`architecture` is provided but `node-version` is missing. This results in using an already installed x64 node which is not probably what you meant. To fix this, provide `architecture` in combination with `node-version`'
2020-09-06 23:09:41 +07:00
) ;
}
2020-09-03 19:40:40 +07:00
if ( ! arch ) {
arch = os . arch ( ) ;
}
2020-05-19 20:25:54 +07:00
if ( version ) {
let token = core . getInput ( 'token' ) ;
let auth = ! token || isGhes ( ) ? undefined : ` token ${ token } ` ;
let stable = ( core . getInput ( 'stable' ) || 'true' ) . toUpperCase ( ) === 'TRUE' ;
2020-06-30 01:56:37 +07:00
const checkLatest =
( core . getInput ( 'check-latest' ) || 'false' ) . toUpperCase ( ) === 'TRUE' ;
2020-09-03 19:40:40 +07:00
await installer . getNode ( version , stable , checkLatest , auth , arch ) ;
2020-05-19 20:25:54 +07:00
}
const registryUrl : string = core . getInput ( 'registry-url' ) ;
const alwaysAuth : string = core . getInput ( 'always-auth' ) ;
if ( registryUrl ) {
auth . configAuthentication ( registryUrl , alwaysAuth ) ;
}
const matchersPath = path . join ( __dirname , '..' , '.github' ) ;
console . log ( ` ##[add-matcher] ${ path . join ( matchersPath , 'tsc.json' ) } ` ) ;
console . log (
` ##[add-matcher] ${ path . join ( matchersPath , 'eslint-stylish.json' ) } `
) ;
console . log (
` ##[add-matcher] ${ path . join ( matchersPath , 'eslint-compact.json' ) } `
) ;
} catch ( error ) {
core . setFailed ( error . message ) ;
}
}
function isGhes ( ) : boolean {
const ghUrl = new URL (
process . env [ 'GITHUB_SERVER_URL' ] || 'https://github.com'
) ;
return ghUrl . hostname . toUpperCase ( ) !== 'GITHUB.COM' ;
}