mirror of
https://gitea.com/actions/setup-node.git
synced 2025-02-06 08:56:10 +08:00
8170e22e8f
* Add project-dir * Fix find lock file * Remove package-dir input * format & resolve conflicts * Add unit tests * build dist * Apply change request fixes * handle non-dir cache-dependency-path * bump cache version * run checks * Handle globs in cacheDependencyPath * refactor, introduce `cacheDependencyPathToProjectsDirectories` it is necessary for the next PR related yarn optimization * Changes requests * Apply fixes * review fixes * add e2e * Add unique * review updates * review updates second stage * Review fixes 3 * imporve e2e tests
16 lines
244 B
TypeScript
16 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'
|
|
}
|