Skip to content

Commit de91dd8

Browse files
use env_url
1 parent 352d5a9 commit de91dd8

3 files changed

Lines changed: 10 additions & 8 deletions

File tree

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
name: Python API Tests
2+
13
on:
24
push:
35
branches: ["**"]
@@ -9,7 +11,6 @@ concurrency:
911
env:
1012
NODE_ENV: test
1113

12-
name: Tests
1314
jobs:
1415
check-all:
1516
runs-on: ubuntu-latest

.github/workflows/e2e.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,8 +19,8 @@ jobs:
1919
yarn install --immutable
2020
- name: Set env
2121
run: |
22-
echo "SITE_URL=${{ github.event.deployment_status.environment_url }}" >> $GITHUB_ENV
23-
echo "${{ github.event.deployment_status.environment_url }}"
22+
echo "SITE_URL=${{ github.event.deployment_status.env_url }}" >> $GITHUB_ENV
23+
echo "${{ github.event.deployment_status.env_url }}"
2424
- name: Run test e2e
2525
run: |
2626
yarn test:e2e:app

.github/workflows/test-unitaires.yaml

Lines changed: 6 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,15 @@
1-
name: Tests Unitaires
2-
"on":
1+
name: Application Unit Tests
2+
3+
on:
34
push:
4-
branches:
5-
- master
6-
pull_request: null
5+
76
concurrency:
87
cancel-in-progress: true
98
group: "${{ github.workflow }}-${{ github.event_name }}-${{ github.event.ref }}"
9+
1010
env:
1111
NODE_ENV: test
12+
1213
jobs:
1314
build:
1415
name: Build

0 commit comments

Comments
 (0)