-
Notifications
You must be signed in to change notification settings - Fork 16
43 lines (43 loc) · 1.36 KB
/
ci-build-cy-test-text-locale-body-fr-patient.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
# This file is automatically generated by scripts/generate_cypress_test_workflow_ci_configs.py, please do not manually update this file. Update the script!
name: Cypress(Development Build - Text Locale - Body - Fr - Patient)
'on':
- push
jobs:
cypress-run:
runs-on: ubuntu-20.04
steps:
- name: Cancel Previous Runs
uses: styfle/[email protected]
with:
access_token: ${{ github.token }}
- name: Checkout
uses: actions/checkout@v2
- name: Cypress Run
uses: cypress-io/github-action@v2
with:
config-file: cypress/configs/ci-build.json
browser: chrome
wait-on: http://localhost:3000
spec: cypress/integration/textLocaleTests/testSet/bodyPage-test-fr-patient.js
start: yarn start-with-cy-coverage
- name: Cypress Upload Screenshots
uses: actions/upload-artifact@v2
if: failure()
with:
name: cypress-screenshots
path: cypress/screenshots
retention-days: 7
- name: Cypress Upload Reports
uses: actions/upload-artifact@v2
if: always()
with:
name: cypress-reports
path: cypress/reports
retention-days: 7
- name: Cypress Upload Coverage
uses: actions/upload-artifact@v2
if: success()
with:
name: cypress-coverage
path: cypress/coverage
retention-days: 7