mirror of
https://kkgithub.com/actions/setup-node.git
synced 2026-01-05 07:41:53 +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';
|
||
|
|
}
|
||
|
|
}
|