We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a2196b6 commit 90e485eCopy full SHA for 90e485e
.github/workflows/github_actions_tests.yml
@@ -13,7 +13,8 @@ jobs:
13
runs-on: ubuntu-latest
14
15
env:
16
- BASE_URL: https://ultimateqa.com/complicated-page # <-- Set your actual BASE_URL here
+ BASE_URL_FE: https://ultimateqa.com/complicated-page # <-- Set your actual BASE_URL here
17
+ BASE_URL_API: https://jsonplaceholder.typicode.com
18
19
steps:
20
- name: Checkout code
@@ -38,7 +39,8 @@ jobs:
38
39
40
- name: Create .env file from workflow
41
run: |
- echo "BASE_URL=${BASE_URL}" > .env
42
+ echo "BASE_URL_FE=${BASE_URL_FE}" > .env
43
+ echo "BASE_URL_API=${BASE_URL_API}" > .env
44
45
- name: Run tests(UI & API) with Pytest
46
0 commit comments