fix(deps): update dependency happy-dom to v15.10.8 #12374
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: CI | |
on: | |
merge_group: | |
push: | |
branches: | |
- main | |
pull_request: | |
jobs: | |
typecheck: | |
runs-on: ubuntu-24.04 | |
steps: | |
- uses: actions/[email protected] | |
- uses: pnpm/[email protected] | |
- name: Use Node.js | |
uses: actions/[email protected] | |
with: | |
node-version: 20 | |
check-latest: true | |
cache: "pnpm" | |
- run: pnpm install | |
- run: pnpm run build | |
- run: pnpm tsc --noEmit | |
lint: | |
runs-on: ubuntu-24.04 | |
steps: | |
- uses: actions/[email protected] | |
- uses: pnpm/[email protected] | |
- name: Use Node.js | |
uses: actions/[email protected] | |
with: | |
node-version: 20 | |
check-latest: true | |
cache: "pnpm" | |
- run: pnpm install | |
- run: pnpm run build | |
- run: pnpm run lint | |
test: | |
runs-on: ubuntu-24.04 | |
strategy: | |
matrix: | |
node: ["20"] | |
steps: | |
- uses: actions/[email protected] | |
- uses: pnpm/[email protected] | |
- name: Use Node.js | |
uses: actions/[email protected] | |
with: | |
node-version: ${{ matrix.node }} | |
check-latest: true | |
cache: "pnpm" | |
- run: pnpm install | |
- run: pnpm run build | |
- run: pnpm run test:coverage | |
- uses: codecov/[email protected] | |
with: | |
files: packages/**/coverage/cobertura-coverage.xml | |
token: ${{ secrets.CODECOV_TOKEN }} | |
verbose: true | |
test-types: | |
runs-on: ubuntu-24.04 | |
strategy: | |
matrix: | |
node: ["20"] | |
steps: | |
- uses: actions/[email protected] | |
- uses: pnpm/[email protected] | |
- name: Use Node.js | |
uses: actions/[email protected] | |
with: | |
node-version: ${{ matrix.node }} | |
check-latest: true | |
cache: "pnpm" | |
- run: pnpm install | |
- run: pnpm run build | |
- run: pnpm run test:types |