Commit 2294add 1 parent 0c93055 commit 2294add Copy full SHA for 2294add
File tree 1 file changed +2
-14
lines changed
1 file changed +2
-14
lines changed Original file line number Diff line number Diff line change 4
4
# paths:
5
5
# - 'frontend/**'
6
6
jobs :
7
- get-token :
8
- runs-on : ubuntu-latest
9
- outputs :
10
- token : ${{ steps.get-token.outputs.token }}
11
- steps :
12
- - uses : actions/checkout@v2
13
- - name : Get Token
14
- id : get-token
15
- run : |
16
- echo "token=$(curl https://app.unleash-hosted.com/docker-login/token/${{ secrets.ECR_ENTERPRISE_TOKEN }})" >> $GITHUB_OUTPUT
17
-
18
7
e2e :
19
8
runs-on : ubuntu-latest
20
- needs : get-token
21
9
strategy :
22
10
matrix :
23
11
test :
35
23
uses : actions/checkout@v4
36
24
- name : Start Unleash test instance
37
25
run : |
38
- echo ${{ needs.get-token.outputs.token }} | docker login --username AWS --password-stdin 726824350591.dkr.ecr.eu-central-1.amazonaws.com
39
- docker compose up -f .github/docker-compose.test.yml -d --wait -t 90
26
+ curl https://app.unleash-hosted.com/docker-login/token/ ${{ secrets.ECR_ENTERPRISE_TOKEN }} | docker login --username AWS --password-stdin 726824350591.dkr.ecr.eu-central-1.amazonaws.com
27
+ docker compose -f .github/docker-compose.test.yml up -d --wait -t 90
40
28
env :
41
29
FRONTEND_TEST_LICENSE : ${{ secrets.FRONTEND_TEST_LICENSE }}
42
30
- name : Run Cypress
You can’t perform that action at this time.
0 commit comments