Skip to content

Merge branch 'master' into dependabot/npm_and_yarn/ejs-3.1.10 #96

Merge branch 'master' into dependabot/npm_and_yarn/ejs-3.1.10

Merge branch 'master' into dependabot/npm_and_yarn/ejs-3.1.10 #96

Workflow file for this run

#
name: CI
on:
push:
pull_request:
workflow_dispatch:
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
cache: "npm"
node-version-file: package.json
- run: npm ci
e2e:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- run: npm ci
- name: Cypress run
uses: cypress-io/github-action@v6
with:
working-directory: ./e2e
start: npm start
wait-on: http://localhost:3000
# Store tests runs in case of failure
- uses: actions/upload-artifact@v4
if: failure()
with:
name: cypress-screenshots
path: e2e/cypress/screenshots
- uses: actions/upload-artifact@v4
if: failure()
with:
name: cypress-videos
path: e2e/cypress/videos