Bump @cypress/request and cypress in /client #2120
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: dpcreator-integration-tests | |
on: [push, pull_request] | |
jobs: | |
test: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Build the client static files | |
run: docker-compose -f docker-compose-ci-step1.yml up | |
- name: Build server and test | |
run: docker-compose -f docker-compose-ci-step2.yml up --exit-code-from cypress | |
- name: Archive Cypress test results | |
if: ${{ always() }} | |
uses: actions/upload-artifact@v2 | |
env: | |
GITHUB_RUN_ID: test12345 | |
with: | |
name: cypress-videos | |
path: client/cypress/videos | |
retention-days: 3 |