Cache subpackage node_modules in check workflow

This commit is contained in:
Marshall Polaris 2022-05-21 13:23:29 -07:00
parent 8321bc94c6
commit 32284791e2

View File

@ -28,7 +28,7 @@ jobs:
- name: Restore cached node_modules
uses: actions/cache@v2
with:
path: node_modules
path: '**/node_modules'
key: ${{ runner.os }}-${{ matrix.node-version }}-nodemodules-${{ hashFiles('**/yarn.lock') }}
- name: Install missing dependencies
run: yarn install --prefer-offline --frozen-lockfile