chore: remove link to removed key concepts page #1078
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: End-to-end tests | |
on: | |
pull_request: | |
jobs: | |
cypress-run: | |
runs-on: ubuntu-20.04 | |
strategy: | |
matrix: | |
# run n copies of the current job in parallel | |
node: [18] | |
steps: | |
- name: Waiting for 200 from the Vercel Preview | |
uses: patrickedqvist/[email protected] | |
id: previewUrl | |
with: | |
token: ${{ secrets.GITHUB_TOKEN }} | |
check_interval: 5 | |
max_timeout: 220 | |
- 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@v6 | |
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 }} | |
- name: 'Upload failure screenshots' | |
if: failure() | |
uses: actions/upload-artifact@v3 | |
with: | |
path: cypress/screenshots/ | |
retention-days: 2 |