From 3f0c83743b8e4f015f819cd9387076180832119d Mon Sep 17 00:00:00 2001 From: Ben Walker Date: Wed, 27 Dec 2023 15:14:08 -0800 Subject: [PATCH] Try to get tests running with hardcoded URL --- .github/workflows/test.yaml | 20 +++++------- .github/workflows/upload_deployment_url.yaml | 34 -------------------- 2 files changed, 8 insertions(+), 46 deletions(-) delete mode 100644 .github/workflows/upload_deployment_url.yaml diff --git a/.github/workflows/test.yaml b/.github/workflows/test.yaml index 3a247381..d71e55c5 100644 --- a/.github/workflows/test.yaml +++ b/.github/workflows/test.yaml @@ -1,15 +1,16 @@ name: Playwright Tests on: - workflow_run: - workflows: ["Upload Deployment URL"] - types: - - completed + # TODO: Constrain this further + push: + branches: + - '**' + pull_request: + branches: + - '**' jobs: test: - needs: capture-deployment-url - if: github.event_name != 'deployment_status' timeout-minutes: 60 runs-on: ubuntu-latest steps: @@ -19,11 +20,6 @@ jobs: - uses: actions/setup-node@v4 with: node-version: 18 - - name: Download Deployment URL - uses: actions/download-artifact@v2 - with: - name: deployment-url - - run: echo "$(> $GITHUB_ENV - - name: Save Deployment URL - uses: actions/upload-artifact@v4 - with: - name: deployment-url - path: $GITHUB_ENV \ No newline at end of file