mirror of
https://github.com/actions/setup-node.git
synced 2024-11-13 07:01:07 +07:00
14 lines
197 B
TypeScript
14 lines
197 B
TypeScript
|
export enum LockType {
|
||
|
Npm = 'npm',
|
||
|
Yarn = 'yarn'
|
||
|
}
|
||
|
|
||
|
export enum State {
|
||
|
CachePrimaryKey = 'CACHE_KEY',
|
||
|
CacheMatchedKey = 'CACHE_RESULT'
|
||
|
}
|
||
|
|
||
|
export enum Outputs {
|
||
|
CacheHit = 'cache-hit'
|
||
|
}
|