From e125de22ba0f9d764fb63c84dbdc86c0fbe06830 Mon Sep 17 00:00:00 2001 From: hoshinotsuyoshi Date: Sat, 2 Nov 2024 10:39:55 +0900 Subject: [PATCH] WIP --- .github/workflows/ci.yml | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 4ba5719..f21ee00 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -72,6 +72,17 @@ jobs: - run: bundle exec rails db:prepare working-directory: ./backend + - name: Cache Yarn dependencies + uses: actions/cache@v4 + with: + path: | + ~/.yarn/cache + node_modules + key: ${{ runner.os }}-yarn-${{ hashFiles('yarn.lock') }} + restore-keys: | + ${{ runner.os }}-yarn- + - name: Install dependencies + run: yarn install --frozen-lockfile - name: Cache Playwright Chromium browser id: playwright-cache uses: actions/cache@v4