1
0
Files
setup-node/src/constants.ts
T

14 lines
197 B
TypeScript
Raw Normal View History

2021-06-16 09:52:44 +03:00
export enum LockType {
Npm = 'npm',
Yarn = 'yarn'
}
export enum State {
CachePrimaryKey = 'CACHE_KEY',
CacheMatchedKey = 'CACHE_RESULT'
}
export enum Outputs {
CacheHit = 'cache-hit'
}