mirror of
https://github.com/actions/setup-node.git
synced 2025-07-14 00:12:50 +08:00
18 lines
319 B
TypeScript
18 lines
319 B
TypeScript
export enum LockType {
|
|
Npm = 'npm',
|
|
Pnpm = 'pnpm',
|
|
Yarn = 'yarn',
|
|
Bun = 'bun'
|
|
}
|
|
|
|
export enum State {
|
|
CachePackageManager = 'SETUP_NODE_CACHE_PACKAGE_MANAGER',
|
|
CachePrimaryKey = 'CACHE_KEY',
|
|
CacheMatchedKey = 'CACHE_RESULT',
|
|
CachePaths = 'CACHE_PATHS'
|
|
}
|
|
|
|
export enum Outputs {
|
|
CacheHit = 'cache-hit'
|
|
}
|