From aa5c472c75744212bb4697c5a0ff63e5a1015e8b Mon Sep 17 00:00:00 2001 From: BrickheadJohnny Date: Tue, 23 Jul 2024 11:38:38 +0200 Subject: [PATCH] fix(gh action): install dependencies --- .github/workflows/playwright.yml | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/.github/workflows/playwright.yml b/.github/workflows/playwright.yml index 26b5e4900e..9041d2fb37 100644 --- a/.github/workflows/playwright.yml +++ b/.github/workflows/playwright.yml @@ -3,7 +3,8 @@ on: deployment_status: jobs: test: - if: github.event_name == 'deployment_status' && github.event.deployment_status.state == 'success' && !contains(github.event.deployment_status.deployment_url, 'guild-xyz-storybook') + if: github.event_name == 'deployment_status' && github.event.deployment_status.state == 'success' + # && !contains(github.event.deployment_status.deployment_url, 'guild-xyz-storybook') timeout-minutes: 60 runs-on: ubuntu-latest steps: @@ -11,6 +12,8 @@ jobs: - uses: actions/setup-node@v4 with: node-version: lts/* + - name: Install dependencies + run: npm ci - name: Install Playwright Browsers run: npx playwright install --with-deps - name: Run Playwright tests