4
0
Fork 0
mirror of https://github.com/actions/setup-node.git synced 2025-11-11 14:56:55 +00:00
setup-node/src/constants.ts
2023-06-08 14:54:51 +02:00

15 lines
244 B
TypeScript

export enum LockType {
Npm = 'npm',
Pnpm = 'pnpm',
Yarn = 'yarn'
}
export enum State {
CachePrimaryKey = 'CACHE_KEY',
CacheMatchedKey = 'CACHE_RESULT',
CachePaths = 'CACHE_PATHS'
}
export enum Outputs {
CacheHit = 'cache-hit'
}