From fe0db67b7edcefab31bcad5631fc0949975e6d5d Mon Sep 17 00:00:00 2001 From: Cody Zuschlag Date: Mon, 12 Feb 2024 14:53:57 +0100 Subject: [PATCH] fix firebase emulators caching --- .github/workflows/ci-cd.yml | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/.github/workflows/ci-cd.yml b/.github/workflows/ci-cd.yml index a76727a..3f88499 100644 --- a/.github/workflows/ci-cd.yml +++ b/.github/workflows/ci-cd.yml @@ -36,12 +36,6 @@ jobs: - name: Build run: pnpm run build:all - - name: Setup emulator cache - uses: actions/cache@v4 - with: - path: ~/.cache/firebase/emulators - key: emulators-${{ runner.os }} - - name: Integration tests run: pnpm run coverage # env: @@ -124,6 +118,12 @@ jobs: - name: Install Playwright Browsers run: pnpm exec playwright install --with-deps chromium + - name: Setup emulator cache + uses: actions/cache@v4 + with: + path: ~/.cache/firebase/emulators + key: emulators-${{ runner.os }} + - name: Run Playwright tests run: pnpm run test:e2e:coverage