From af24e9084b5e716edb3b801027490d06bfb57b66 Mon Sep 17 00:00:00 2001 From: Filip Hric Date: Thu, 18 Apr 2024 22:01:22 +0200 Subject: [PATCH] fix API key references --- .github/workflows/cypress.yaml | 4 ++-- .github/workflows/playwright.yml | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/cypress.yaml b/.github/workflows/cypress.yaml index c09c16e..e1766f4 100644 --- a/.github/workflows/cypress.yaml +++ b/.github/workflows/cypress.yaml @@ -12,7 +12,7 @@ jobs: runs-on: ubuntu-22.04 steps: - name: Checkout - uses: actions/checkout@v3 + uses: actions/checkout@v4 # Install NPM dependencies, cache them correctly # and run all Cypress tests @@ -28,4 +28,4 @@ jobs: - name: Run tests run: yarn test:cypress env: - REPLAY_API_KEY: ${{ secrets.REPLAY_API_KEY }} \ No newline at end of file + REPLAY_API_KEY: ${{ secrets.CYPRESS_REPLAY_API_KEY }} \ No newline at end of file diff --git a/.github/workflows/playwright.yml b/.github/workflows/playwright.yml index 5b62a0e..a1d0f69 100644 --- a/.github/workflows/playwright.yml +++ b/.github/workflows/playwright.yml @@ -23,7 +23,7 @@ jobs: - name: Run Playwright tests run: yarn test:playwright env: - PLAYWRIGHT_REPLAY_API_KEY: ${{ secrets.PLAYWRIGHT_REPLAY_API_KEY }} + REPLAY_API_KEY: ${{ secrets.PLAYWRIGHT_REPLAY_API_KEY }} REPLAY_PLAYWRIGHT_FIXTURE: ${{ secrets.REPLAY_PLAYWRIGHT_FIXTURE }} - uses: actions/upload-artifact@v4 if: always()