Skip to content

Added Cypress tests and GitHub action #1

Added Cypress tests and GitHub action

Added Cypress tests and GitHub action #1

Workflow file for this run

name: Cypress Tests
on:
push:
branches:
- master
pull_request:
branches:
- master
jobs:
build-and-test:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v2
- name: Setup Node.js
uses: actions/setup-node@v2
with:
node-version: 14
- name: Install dependencies
run: npm ci
- name: Run Cypress tests
run: npm run cypress:run