2020-05-19 20:25:54 +07:00
import * as core from '@actions/core' ;
2023-01-05 19:16:21 +07:00
2021-11-29 16:18:31 +07:00
import fs from 'fs' ;
2023-01-05 19:16:21 +07:00
import os from 'os' ;
2020-05-19 20:25:54 +07:00
import * as auth from './authutil' ;
import * as path from 'path' ;
2021-06-16 13:52:44 +07:00
import { restoreCache } from './cache-restore' ;
2023-01-05 19:16:21 +07:00
import { isCacheFeatureAvailable } from './cache-utils' ;
import { getNodejsDistribution } from './distributions/installer-factory' ;
import { parseNodeVersionFile , printEnvDetailsAndSetOutput } from './util' ;
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...
//
2022-11-17 20:35:58 +07:00
const version = resolveVersionInput ( ) ;
2020-05-19 20:25:54 +07:00
2020-12-09 05:15:38 +07:00
let arch = core . getInput ( 'architecture' ) ;
2021-06-16 13:52:44 +07:00
const cache = core . getInput ( 'cache' ) ;
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-10 00:27:02 +07:00
'`architecture` is provided but `node-version` is missing. In this configuration, the version/architecture of Node will not be changed. 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 ) {
2022-11-17 20:35:58 +07:00
const token = core . getInput ( 'token' ) ;
const auth = ! token ? undefined : ` token ${ token } ` ;
const stable =
( core . getInput ( 'stable' ) || 'true' ) . toUpperCase ( ) === 'TRUE' ;
2020-06-30 01:56:37 +07:00
const checkLatest =
( core . getInput ( 'check-latest' ) || 'false' ) . toUpperCase ( ) === 'TRUE' ;
2023-01-05 19:16:21 +07:00
const nodejsInfo = {
versionSpec : version ,
checkLatest ,
auth ,
stable ,
arch
} ;
const nodeDistribution = getNodejsDistribution ( nodejsInfo ) ;
await nodeDistribution . setupNodeJs ( ) ;
2020-05-19 20:25:54 +07:00
}
2022-10-03 21:02:04 +07:00
await printEnvDetailsAndSetOutput ( ) ;
2022-07-01 02:55:32 +07:00
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 ) ;
}
2022-04-01 02:10:37 +07:00
if ( cache && isCacheFeatureAvailable ( ) ) {
2021-08-03 00:44:59 +07:00
const cacheDependencyPath = core . getInput ( 'cache-dependency-path' ) ;
await restoreCache ( cache , cacheDependencyPath ) ;
2021-06-16 13:52:44 +07:00
}
const matchersPath = path . join ( __dirname , '../..' , '.github' ) ;
2021-01-20 22:28:35 +07:00
core . info ( ` ##[add-matcher] ${ path . join ( matchersPath , 'tsc.json' ) } ` ) ;
core . info (
2020-05-19 20:25:54 +07:00
` ##[add-matcher] ${ path . join ( matchersPath , 'eslint-stylish.json' ) } `
) ;
2021-01-20 22:28:35 +07:00
core . info (
2020-05-19 20:25:54 +07:00
` ##[add-matcher] ${ path . join ( matchersPath , 'eslint-compact.json' ) } `
) ;
2021-11-29 16:18:31 +07:00
} catch ( err ) {
core . setFailed ( err . message ) ;
2020-05-19 20:25:54 +07:00
}
}
2021-11-29 16:18:31 +07:00
function resolveVersionInput ( ) : string {
2022-02-24 20:31:57 +07:00
let version = core . getInput ( 'node-version' ) ;
2022-06-30 05:37:53 +07:00
const versionFileInput = core . getInput ( 'node-version-file' ) ;
2021-11-29 16:18:31 +07:00
if ( version && versionFileInput ) {
core . warning (
'Both node-version and node-version-file inputs are specified, only node-version will be used'
) ;
}
if ( version ) {
return version ;
}
if ( versionFileInput ) {
const versionFilePath = path . join (
process . env . GITHUB_WORKSPACE ! ,
versionFileInput
) ;
2022-06-30 02:01:42 +07:00
2021-11-29 16:18:31 +07:00
if ( ! fs . existsSync ( versionFilePath ) ) {
throw new Error (
` The specified node version file at: ${ versionFilePath } does not exist `
) ;
}
2022-06-30 02:01:42 +07:00
2023-01-05 19:16:21 +07:00
version = parseNodeVersionFile ( fs . readFileSync ( versionFilePath , 'utf8' ) ) ;
2022-06-30 02:01:42 +07:00
2021-11-29 16:18:31 +07:00
core . info ( ` Resolved ${ versionFileInput } as ${ version } ` ) ;
}
return version ;
}