From b884219239c32cf129be9154300e2e9ebe7b557f Mon Sep 17 00:00:00 2001 From: alvarosabu Date: Thu, 5 Dec 2024 10:51:10 +0100 Subject: [PATCH] chore(ci): added cache cypress binary --- .github/workflows/test.yml | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 73399933..9fa7a0c0 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -22,6 +22,11 @@ jobs: with: node-version: ${{ matrix.node-version }} cache: pnpm + - name: Cache Cypress binary + uses: actions/cache@v4 + with: + path: ~/.cache/Cypress + key: cypress-${{ runner.os }}-cypress-${{ hashFiles('**/pnpm-lock.yaml') }} - name: Install dependencies run: pnpm install - name: Run Unit Tests