Skip to content

Update all non-major dependencies #1057

Update all non-major dependencies

Update all non-major dependencies #1057

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
permissions:
contents: read
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@9c091bb21b7c1c1d1991bb908d89e4e9dddfe3e0
with:
persist-credentials: false
- name: Use Node.js
uses: actions/setup-node@48b55a011bda9f5d6aeb4c2d9c7362e8dae4041e
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