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