mirror of
https://gitea.com/actions/setup-node.git
synced 2025-04-22 08:45:38 +08:00
14 lines
379 B
TypeScript
14 lines
379 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(): string {
|
||
|
return 'https://nodejs.org/download/nightly';
|
||
|
}
|
||
|
}
|