Skip to content

Commit

Permalink
Alterando o workflow
Browse files Browse the repository at this point in the history
Removendo alguns comentários e alterando a ordem de alguns steps no arquivo de workflow
  • Loading branch information
AndressaKarla authored Nov 11, 2023
1 parent 8b44192 commit 94f9494
Showing 1 changed file with 11 additions and 10 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -28,24 +28,25 @@ jobs:

- name: Passo 3 - Executar testes no navegador chrome em modo headless (2º plano) em um ambiente de desenvolvimento e Gerar os resultados dos testes
run: bundle exec cucumber -p ci
- name: Passo 4 - Armazenar os resultados dos testes em screenshots

- name: Passo 4 - Armazenar os resultados dos testes em relatório html
uses: actions/upload-artifact@v3
# expressão condicional para que sempre seja executado independentemente dos resultados dos steps anteriores
if: ${{ always() }}
with:
name: screenshots_chrome
path: ./relatorios/screenshots
name: relatorio_html_chrome
path: ./relatorios/relatorio.html
# armazena o relatório html por 30 dias
retention-days: 30

- name: Passo 5 - Armazenar os resultados dos testes em relatório html
- name: Passo 5 - Armazenar os resultados dos testes em screenshots
uses: actions/upload-artifact@v3
# expressão condicional para que sempre seja executado independentemente dos resultados dos steps anteriores
if: ${{ always() }}
with:
name: relatorio_html_chrome
path: ./relatorios/relatorio.html
# armazena o relatório html por 30 dias
name: screenshots_chrome
path: ./relatorios/screenshots
# armazena os screenshots por 30 dias
retention-days: 30



0 comments on commit 94f9494

Please sign in to comment.