From afcff10983d66fbc724b20fd1e35a93274c4855f Mon Sep 17 00:00:00 2001 From: ryanformio Date: Thu, 21 Mar 2024 12:42:23 -0500 Subject: [PATCH] Forgot cached node_mdoules --- .github/workflows/config.yml | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/.github/workflows/config.yml b/.github/workflows/config.yml index e1613525b5..11964850c9 100644 --- a/.github/workflows/config.yml +++ b/.github/workflows/config.yml @@ -105,6 +105,14 @@ jobs: cache: 'npm' registry-url: 'https://registry.npmjs.org/' + - name: Restore node modules from cache + uses: actions/cache@v3 + with: + path: node_modules + key: ${{ runner.os }}-node-${{ hashFiles('**/yarn.lock') }} + restore-keys: | + ${{ runner.os }}-node- + - name: Build uses: borales/actions-yarn@v4 with: