File tree Expand file tree Collapse file tree 1 file changed +16
-1
lines changed
Expand file tree Collapse file tree 1 file changed +16
-1
lines changed Original file line number Diff line number Diff line change 66 steps :
77 - name : Checkout
88 uses : actions/checkout@v4
9+
10+ - name : Debug - Verificar CREDENTIALS
11+ run : |
12+ echo "Valor de CREDENTIALS: $CREDENTIALS"
13+ env :
14+ CREDENTIALS : ${{ secrets.CREDENTIALS }}
15+
16+ - name : Criar arquivo cypress.env.json com as credenciais
17+ run : |
18+ echo "{\"CREDENTIALS\": $CREDENTIALS}" > cypress.env.json
19+ cat cypress.env.json # Exibir o conteúdo para debug
20+ env :
21+ CREDENTIALS : ${{ secrets.CREDENTIALS }}
22+
923 - name : Cypress run
1024 uses : cypress-io/github-action@v6
25+
1126 env :
1227 CYPRESS_RECORD_KEY : ${{ secrets.CYPRESS_RECORD_KEY }}
1328 CYPRESS_AUTHORIZATION_TOKEN : ${{ secrets.AUTHORIZATION_TOKEN }}
14- echo "{\"CREDENTIALS\" : $CREDENTIALS}" > cypress.env.json
29+ CYPRESS_CREDENTIALS : ${{ secrets.CREDENTIALS }}
1530 with :
1631 command : npm run test:cloud
You can’t perform that action at this time.
0 commit comments