Skip to content

Merge pull request #53 from Programmer-RD-AI/main #24

Merge pull request #53 from Programmer-RD-AI/main

Merge pull request #53 from Programmer-RD-AI/main #24

Workflow file for this run

name: End-to-end tests
on: push
jobs:
test:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v3
- name: Set up Node.js
uses: actions/setup-node@v3
with:
node-version: '16'
- name: Install dependencies
run: npm install
- name: Start application
run: npm run dev &
env:
CYPRESS_BASE_URL: http://localhost:5174
- name: Run Cypress tests
run: npm test
env:
CYPRESS_BASE_URL: http://localhost:5174