Update dependency cypress to v14 #300
Workflow file for this run
This file contains hidden or 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: ci | |
on: push | |
jobs: | |
test: | |
runs-on: ubuntu-20.04 | |
steps: | |
- name: Check out code 🛎 | |
uses: actions/checkout@v2 | |
# install dependencies, start the app, | |
# and run E2E tests using Cypress GitHub action | |
# https://github.com/cypress-io/github-action | |
- name: Run tests 🧪 | |
uses: cypress-io/github-action@v2 | |
with: | |
start: npm start | |
wait-on: 'http://localhost:8080' | |
# run two Cypress instances at the same time | |
# so they truly chat with each other | |
- name: Run 2 Cypresses 🧪 | |
uses: cypress-io/github-action@v2 | |
with: | |
# we already have installed everything | |
install: false | |
# the application is running already | |
# from the previous "start" command | |
command: npm run chat:run |