Skip to content

Update dependency cypress to v15 (#923) #802

Update dependency cypress to v15 (#923)

Update dependency cypress to v15 (#923) #802

Workflow file for this run

name: Cypress
on:
push:
branches: [main]
pull_request:
branches: [main]
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
cypress:
runs-on: ubuntu-latest
env:
NODE_ENV: test
SQLITE:
db.db
# See supported Node.js release schedule at https://nodejs.org/en/about/releases/
steps:
- uses: actions/checkout@v6
- name: Use Node.js
uses: actions/setup-node@v6
with:
node-version: 24.x
cache: "npm"
# Installs packages
- run: npm ci
# Tests the project with cypress
- run: npm run start:test & npm run cypress