mirror of
https://gitea.com/actions/setup-node.git
synced 2025-04-21 00:05:37 +08:00
16 lines
244 B
TypeScript
16 lines
244 B
TypeScript
export enum LockType {
|
|
Npm = 'npm',
|
|
Pnpm = 'pnpm',
|
|
Yarn = 'yarn'
|
|
}
|
|
|
|
export enum State {
|
|
CachePrimaryKey = 'CACHE_KEY',
|
|
CacheMatchedKey = 'CACHE_RESULT',
|
|
CachePaths = 'CACHE_PATHS'
|
|
}
|
|
|
|
export enum Outputs {
|
|
CacheHit = 'cache-hit'
|
|
}
|