Skip to content

Commit

Permalink
fix firebase emulators caching
Browse files Browse the repository at this point in the history
  • Loading branch information
codyzu committed Feb 12, 2024
1 parent a7f0c13 commit fe0db67
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions .github/workflows/ci-cd.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand Down Expand Up @@ -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

Expand Down

0 comments on commit fe0db67

Please sign in to comment.