From efe9ddfd52ea984e42dc00d52a7a882fbe0322c3 Mon Sep 17 00:00:00 2001 From: Justin Hernandez Date: Fri, 5 Dec 2025 02:06:56 -0800 Subject: [PATCH] use nvmrc, update cache dependency path (#1470) --- .github/actions/yarn-install/action.yml | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/.github/actions/yarn-install/action.yml b/.github/actions/yarn-install/action.yml index 1ec7e4ea9..56319aa3f 100644 --- a/.github/actions/yarn-install/action.yml +++ b/.github/actions/yarn-install/action.yml @@ -22,9 +22,11 @@ runs: - name: Setup Node.js uses: actions/setup-node@v4 with: - node-version: 22 + node-version-file: .nvmrc cache: "yarn" - cache-dependency-path: yarn.lock + cache-dependency-path: | + yarn.lock + .yarnrc.yml - name: Install dependencies uses: nick-fields/retry@v3