mirror of
https://github.com/actions/setup-node
synced 2025-04-05 13:28:21 +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';
|
|
}
|
|
}
|