Skip to content

Clean up the Rollup configuration #1200

Clean up the Rollup configuration

Clean up the Rollup configuration #1200

Workflow file for this run

name: Tests
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
cypress-run:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v3
- name: Install dependencies
run: npm ci
- name: Build files
run: npm run build
- name: Test package
run: npm run test:package
- name: Start server
run: npm run serve &
- name: Run Cypress (Chrome)
uses: cypress-io/github-action@v6
with:
browser: chrome
install: false
wait-on: "http://localhost:5000"
- name: Run Cypress (Edge)
uses: cypress-io/github-action@v6
with:
browser: edge
install: false
wait-on: "http://localhost:5000"