mirror of
https://code.forgejo.org/actions/setup-node.git
synced 2025-03-01 04:33:24 +00:00
16 lines
304 B
TypeScript
16 lines
304 B
TypeScript
export enum LockType {
|
|
Npm = 'npm',
|
|
Pnpm = 'pnpm',
|
|
Yarn = 'yarn'
|
|
}
|
|
|
|
export enum State {
|
|
CachePackageManager = 'SETUP_NODE_CACHE_PACKAGE_MANAGER',
|
|
CachePrimaryKey = 'CACHE_KEY',
|
|
CacheMatchedKey = 'CACHE_RESULT',
|
|
CachePaths = 'CACHE_PATHS'
|
|
}
|
|
|
|
export enum Outputs {
|
|
CacheHit = 'cache-hit'
|
|
}
|