mirror of
https://github.com/actions/setup-node.git
synced 2025-05-30 16:18:33 +08: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';
|
||
|
}
|
||
|
}
|