mirror of
https://github.com/actions/setup-node
synced 2025-04-10 10:32:13 +00:00
13 lines
301 B
TypeScript
13 lines
301 B
TypeScript
import BaseDistribution from '../base-distribution';
|
|
import {NodeInputs} from '../base-models';
|
|
|
|
export default class RcBuild extends BaseDistribution {
|
|
constructor(nodeInfo: NodeInputs) {
|
|
super(nodeInfo);
|
|
}
|
|
|
|
getDistributionUrl(): string {
|
|
return 'https://nodejs.org/download/rc';
|
|
}
|
|
}
|