-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
623e80f
commit e9a475f
Showing
1 changed file
with
24 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
name: Preview frontend E2E tests | ||
|
||
on: | ||
push: | ||
|
||
jobs: | ||
wait-for-deployment: | ||
runs-on: ubuntu-latest | ||
outputs: | ||
vercel_url: ${{steps.vercel.outputs.environment_url}} | ||
steps: | ||
- name: Check out repository | ||
uses: actions/checkout@v4 | ||
- id: vercel | ||
env: | ||
BRANCH_NAME: ${{ github.head_ref || github.ref_name }} | ||
run: | | ||
echo "$BRANCH_NAME" | ||
python -m pip install requests | ||
python main.py | ||
- name: Echo GITHUB_OUTPUT | ||
run: echo "$GITHUB_OUTPUT" | ||
- name: Echo GITHUB_ENV | ||
run: echo "$GITHUB_ENV" |