mirror of
https://gitee.com/github-actions/setup-node
synced 2024-04-27 22:27:08 +08:00
15 lines
214 B
TypeScript
15 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'
|
|
}
|