setup-node/src/constants.ts

16 lines
244 B
TypeScript
Raw Normal View History

export enum LockType {
Npm = 'npm',
2021-06-30 15:44:51 +00:00
Pnpm = 'pnpm',
Yarn = 'yarn'
}
export enum State {
CachePrimaryKey = 'CACHE_KEY',
CacheMatchedKey = 'CACHE_RESULT',
CachePaths = 'CACHE_PATHS'
}
export enum Outputs {
CacheHit = 'cache-hit'
}