Skip to content

Commit

Permalink
Stricter check and cleaner messaging
Browse files Browse the repository at this point in the history
  • Loading branch information
gordey4doronin committed Jun 30, 2021
1 parent 8624ddb commit 4804262
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
4 changes: 2 additions & 2 deletions __tests__/installer.test.ts
Expand Up @@ -696,7 +696,7 @@ describe('setup-node', () => {
);
});

it('fail with unexpected LTS alias (lts/)', async () => {
it('fail with unable to parse LTS alias (lts/)', async () => {
// arrange
inputs['node-version'] = 'lts/';

Expand All @@ -713,7 +713,7 @@ describe('setup-node', () => {
'Getting manifest from actions/node-versions@main'
);
expect(cnSpy).toHaveBeenCalledWith(
`::error::Unexpected LTS alias '' for Node version 'lts/'${osm.EOL}`
`::error::Unable to parse LTS alias for Node version 'lts/'${osm.EOL}`
);
});

Expand Down
4 changes: 2 additions & 2 deletions dist/index.js
Expand Up @@ -13225,7 +13225,7 @@ function getNode(versionSpec, stable, checkLatest, auth, arch = os.arch()) {
}
exports.getNode = getNode;
function isLtsAlias(versionSpec) {
return versionSpec.startsWith('lts');
return versionSpec.startsWith('lts/');
}
function getManifest(auth) {
core.debug('Getting manifest from actions/node-versions@main');
Expand All @@ -13235,7 +13235,7 @@ function resolveLtsAliasFromManifest(versionSpec, stable, manifest) {
var _a;
const alias = (_a = versionSpec.split('lts/')[1]) === null || _a === void 0 ? void 0 : _a.toLowerCase();
if (!alias) {
throw new Error(`Unexpected LTS alias '${alias}' for Node version '${versionSpec}'`);
throw new Error(`Unable to parse LTS alias for Node version '${versionSpec}'`);
}
core.debug(`LTS alias '${alias}' for Node version '${versionSpec}'`);
// Supported formats are `lts/<alias>` and `lts/*`. Where asterisk means highest possible LTS.
Expand Down
4 changes: 2 additions & 2 deletions src/installer.ts
Expand Up @@ -193,7 +193,7 @@ export async function getNode(
}

function isLtsAlias(versionSpec: string): boolean {
return versionSpec.startsWith('lts');
return versionSpec.startsWith('lts/');
}

function getManifest(auth: string | undefined): Promise<tc.IToolRelease[]> {
Expand All @@ -210,7 +210,7 @@ function resolveLtsAliasFromManifest(

if (!alias) {
throw new Error(
`Unexpected LTS alias '${alias}' for Node version '${versionSpec}'`
`Unable to parse LTS alias for Node version '${versionSpec}'`
);
}

Expand Down

0 comments on commit 4804262

Please sign in to comment.