From 388c51049b8fb8afd6aedfa02d0a3b42cb18c551 Mon Sep 17 00:00:00 2001 From: Elio Bischof Date: Sat, 2 Nov 2024 01:33:09 +0100 Subject: [PATCH] cleanup --- .github/workflows/test.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index e9e04b6b4fe..3dd3cca3415 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -44,7 +44,7 @@ jobs: cache: 'pnpm' - uses: actions/cache@v4.0.2 - name: Setup Cypress cache + name: Setup Cypress binary cache with: path: ~/.cache/Cypress key: ${{ runner.os }}-cypress-binary-${{ hashFiles('**/pnpm-lock.yaml') }} @@ -56,7 +56,7 @@ jobs: - name: Install Dependencies run: pnpm install --frozen-lockfile - # We can cache the Playwright binary cache independently from the pnpm cache, because we install it separately. + # We can cache the Playwright binary independently from the pnpm cache, because we install it separately. # After pnpm install --frozen-lockfile, we can get the version so we only have to download the binary once per version. - run: echo "PLAYWRIGHT_VERSION=$(npx playwright --version | cut -d ' ' -f 2)" >> $GITHUB_ENV if: ${{ matrix.command == 'test:acceptance' }}