mirror of
https://gitea.com/actions/setup-node.git
synced 2024-11-22 18:19:33 +01: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'
|
||
|
}
|