Skip to content

Bump happy-dom from 15.11.7 to 20.0.0 #731

Bump happy-dom from 15.11.7 to 20.0.0

Bump happy-dom from 15.11.7 to 20.0.0 #731

Workflow file for this run

name: TypeScript CI
on: push
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Setup pnpm
uses: pnpm/action-setup@v4
with:
version: 9.14.4
- name: Use Node.js
uses: actions/setup-node@v4
with:
node-version: '22.x'
cache: 'pnpm'
- name: Install dependencies
run: pnpm install --frozen-lockfile
- name: TypeScript type check
run: pnpm run typecheck
- name: Build project
run: pnpm run build
- name: Run linter
run: pnpm run lint
- name: Run tests
run: pnpm run test