Skip to content

Update dependency @types/react to v18.3.18 #243

Update dependency @types/react to v18.3.18

Update dependency @types/react to v18.3.18 #243

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
strategy:
matrix:
node-version: [22.x]
# See supported Node.js release schedule at https://nodejs.org/en/about/releases/
steps:
- uses: actions/checkout@v4
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
cache: "npm"
# Installs packages
- run: npm ci
# Tests the project with cypress
- run: npm run start:test & npm run cypress