Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Do not use a global cache for Node.js (#994)
Motivation: We have seen a weird error message in CI builds. ``` Couldn't follow symbolic link '/home/runner/.gradle/caches/nodejs/server/node-v16.14.0-linux-x64/bin/npx'. ``` We used to use a custom gradle cache key in the CI build workflow. But in the end, we removed it and delegated a cache logic to `gradle/gradle-build-action`. So I think we will use the cached node.js without referring to the glocal cache location. Modification: - Remove the custom cache location for Node.js Result: Stable CI builds
- Loading branch information