fix(translations): sync translations from transifex (v36) #4496
Workflow file for this run
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
name: "dhis2: tests" | |
on: [push] | |
jobs: | |
cypress: | |
runs-on: ubuntu-latest | |
if: "!(startsWith(github.event.head_commit.message, 'fix(translations)') && github.actor == 'dhis2-bot') && !contains(github.event.head_commit.message, '[skip ci]')" | |
container: cypress/browsers:node14.7.0-chrome84 | |
strategy: | |
# when one test fails, DO NOT cancel the other | |
# containers, because this will kill Cypress processes | |
# leaving the Dashboard hanging ... | |
# https://github.com/cypress-io/github-action/issues/48 | |
fail-fast: false | |
matrix: | |
containers: [1, 2, 3, 4] | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v1 | |
- name: Cypress run | |
uses: cypress-io/github-action@v2 | |
with: | |
record: true | |
parallel: true | |
group: e2e-chrome-parallel | |
browser: chrome | |
start: 'yarn start:forCypress' | |
wait-on: 'http://localhost:3000' | |
# wait for 200 secs for the server to respond | |
wait-on-timeout: 200 | |
env: | |
CI: true | |
CYPRESS_RECORD_KEY: '6b0bce0d-a4e8-417b-bbee-9157cbe9a999' | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} |