mirror of
https://github.com/actions/setup-node.git
synced 2025-06-29 22:23:47 +00:00
Add support for v8-canary, nightly and rc (#655)
This commit is contained in:
parent
92a57f4a93
commit
64ed1c7eab
24 changed files with 3976 additions and 1648 deletions
13
src/distributions/v8-canary/canary_builds.ts
Normal file
13
src/distributions/v8-canary/canary_builds.ts
Normal file
|
@ -0,0 +1,13 @@
|
|||
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';
|
||||
}
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue