From 06037f981ae87e418d094c2b3d6fff67626a5db0 Mon Sep 17 00:00:00 2001 From: HoJeong Go Date: Fri, 19 Jul 2024 20:56:20 +0900 Subject: [PATCH] Specify cache-dependency-path --- .github/workflows/tests.yml | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index dd2296b219..1dd75a01cd 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -16,15 +16,16 @@ jobs: steps: - uses: actions/checkout@v3 + - name: Enable Corepack + run: corepack enable + - name: Use node ${{ matrix.node }} uses: actions/setup-node@v4 with: cache: yarn node-version: ${{ matrix.node }} registry-url: https://registry.npmjs.org - - - name: Enable Corepack - run: corepack enable + cache-dependency-path: yarn.lock - run: tree . -L 2 -a