Skip to content

ci: Use NodeJS v24 to build package #2406

ci: Use NodeJS v24 to build package

ci: Use NodeJS v24 to build package #2406

Workflow file for this run

name: E2E Tests
on:
push:
branches:
- main
- maintenance
pull_request:
jobs:
e2e-tests:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
- name: Install Dependencies
run: npm ci
- name: Install Node-RED Dependencies
working-directory: ./cypress/fixtures/user-dir/
run: npm install
- name: Run Linting Tests
run: npm run lint
- name: Run Dashboard E2E (Cypress) Tests
uses: cypress-io/github-action@bc22e01685c56e89e7813fd8e26f33dc47f87e15 # v7.1.5
with:
install: false
config-file: cypress.config.js
build: npm run build
start: npm run cy:server
- uses: actions/upload-artifact@bbbca2ddaa5d8feaa63e36b76fdaad77386f024f # v7.0.0
if: failure()
with:
name: cypress-output
path: |
cypress/screenshots
cypress/videos