Skip to content

Bump happy-dom from 15.10.1 to 15.11.2 (#68) #230

Bump happy-dom from 15.10.1 to 15.11.2 (#68)

Bump happy-dom from 15.10.1 to 15.11.2 (#68) #230

Workflow file for this run

name: Tests
env:
NODE_VERSION: 22
on:
push:
branches: master
pull_request:
branches: master
permissions:
contents: read
jobs:
test-unit:
name: Unit Tests
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Using node v${{ env.NODE_VERSION }}
uses: actions/setup-node@v4
with:
node-version: ${{env.NODE_VERSION}}
cache: npm
- name: NPM Install
run: npm ci
env:
CYPRESS_INSTALL_BINARY: 0
- name: Test
run: npm run test
test-e2e:
name: E2E Tests
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Using node v${{ env.NODE_VERSION }}
uses: actions/setup-node@v4
with:
node-version: ${{env.NODE_VERSION}}
cache: npm
- name: NPM Install
run: npm ci
- name: Run Cypress tests
uses: cypress-io/github-action@v6
with:
start: npm run dev -- --host=127.0.0.1
wait-on: 'http://127.0.0.1:3009'
browser: chrome