You've already forked setup-node
mirror of
https://github.com/actions/setup-node.git
synced 2025-09-10 23:04:02 +07:00
Add support for v8-canary, nightly and rc (#655)
This commit is contained in:
19
src/distributions/base-models.ts
Normal file
19
src/distributions/base-models.ts
Normal file
@ -0,0 +1,19 @@
|
||||
export interface NodeInputs {
|
||||
versionSpec: string;
|
||||
arch: string;
|
||||
auth?: string;
|
||||
checkLatest: boolean;
|
||||
stable: boolean;
|
||||
}
|
||||
|
||||
export interface INodeVersionInfo {
|
||||
downloadUrl: string;
|
||||
resolvedVersion: string;
|
||||
arch: string;
|
||||
fileName: string;
|
||||
}
|
||||
|
||||
export interface INodeVersion {
|
||||
version: string;
|
||||
files: string[];
|
||||
}
|
Reference in New Issue
Block a user