Skip to content

lint

lint #61

Workflow file for this run

name: Cypress Tests
on:
push:
branches-ignore:
- main
jobs:
cypress-run:
env:
DATABASE_URL: ${{ secrets.DATABASE_URL}}
TEST_USER_EMAIL: ${{ secrets.TEST_USER_EMAIL }}
runs-on: ubuntu-latest
environment: Test
steps:
- name: Checkout
uses: actions/checkout@v3
# Install NPM dependencies, cache them correctly
# and run all Cypress tests
- name: Cypress run
uses: cypress-io/[email protected] # use the explicit version number
with:
build: npm run build
start: npm start