mirror of
https://github.com/actions/setup-node.git
synced 2025-04-29 06:03:08 +00:00
14 lines
381 B
TypeScript
14 lines
381 B
TypeScript
|
import BasePrereleaseNodejs from '../base-distribution-prerelease';
|
||
|
import {NodeInputs} from '../base-models';
|
||
|
|
||
|
export default class CanaryBuild extends BasePrereleaseNodejs {
|
||
|
protected distribution = 'v8-canary';
|
||
|
constructor(nodeInfo: NodeInputs) {
|
||
|
super(nodeInfo);
|
||
|
}
|
||
|
|
||
|
protected getDistributionUrl(): string {
|
||
|
return 'https://nodejs.org/download/v8-canary';
|
||
|
}
|
||
|
}
|