Adding header to Lang.json as per master #629
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# 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 - Data Analytics - Body - En - Patient - 70) | |
'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/dataAnalyticsTests/testSet/bodyPage-test-en-patient-70.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 |