Skip to content

update vietnamese Update component.navigation_old.json #886

update vietnamese Update component.navigation_old.json

update vietnamese Update component.navigation_old.json #886

Workflow file for this run

name: End-to-end tests
on:
pull_request:
jobs:
cypress-run:
runs-on: ubuntu-20.04
strategy:
# when one test fails, DO NOT cancel the other
# containers, because this will kill Cypress processes
# leaving Cypress Cloud hanging ...
# https://github.com/cypress-io/github-action/issues/48
fail-fast: false
matrix:
# run n copies of the current job in parallel
containers: [1]
steps:
- name: Waiting for 200 from the Vercel Preview
uses: patrickedqvist/[email protected]
id: previewUrl
with:
token: ${{ secrets.GITHUB_TOKEN }}
check_interval: 4
max_timeout: 180
- name: Checkout
uses: actions/checkout@v3
with:
repository: 'vegaprotocol/vega-website-cypress-tests'
# Install NPM dependencies, cache them correctly
# and run all Cypress tests
- name: Cypress run
uses: cypress-io/github-action@v5
with:
wait-on: ${{steps.previewUrl.outputs.url}}
config: baseUrl="${{steps.previewUrl.outputs.url}}"
env:
# Recommended: pass the GitHub token lets this action correctly
# determine the unique run id necessary to re-run the checks
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}