Skip to content

Login cypress test with ip server #13

Login cypress test with ip server

Login cypress test with ip server #13

Workflow file for this run

name: End-to-End Tests
on: [push]
jobs:
cypress-run:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v2
- name: Setup Node.js
uses: actions/setup-node@v1
with:
node-version: '14'
- name: Install Dependencies
run: npm install
- name: Start Server
run: npm start &
env:
CI: true
- name: Run Cypress Tests
uses: cypress-io/github-action@v2
with:
start: npm start
wait-on: 'http://localhost:3000'
wait-on-timeout: 60