mirror of
https://github.com/actions/setup-node
synced 2025-04-04 04:48:21 +00:00
15 lines
429 B
TypeScript
15 lines
429 B
TypeScript
import BasePrereleaseNodejs from '../base-distribution-prerelease';
|
|
import {NodeInputs} from '../base-models';
|
|
|
|
export default class NightlyNodejs extends BasePrereleaseNodejs {
|
|
protected distribution = 'nightly';
|
|
constructor(nodeInfo: NodeInputs) {
|
|
super(nodeInfo);
|
|
}
|
|
|
|
protected getDistributionUrl(mirror: string): string {
|
|
const url = mirror || 'https://nodejs.org';
|
|
return `${url}/download/nightly`;
|
|
}
|
|
}
|