chore(deps): update devdependency happy-dom to v15.11.1 #958
Workflow file for this run
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: | |
push: | |
branches: | |
- main | |
- renovate/* | |
- renovate/* | |
pull_request: | |
branches: | |
- main | |
jobs: | |
ci: | |
strategy: | |
matrix: | |
os: [ubuntu-latest, windows-latest] | |
runs-on: ${{ matrix.os }} | |
steps: | |
- uses: actions/checkout@v4 | |
- run: corepack enable | |
- uses: actions/setup-node@v4 | |
with: | |
node-version: 18 | |
cache: "pnpm" | |
- name: π¦ Install dependencies | |
run: pnpm install --frozen-lockfile | |
- name: π§ Set up project | |
run: pnpm dev:prepare | |
- name: πͺ Test types | |
run: pnpm test:types | |
- name: π Build project | |
run: pnpm prepack | |
- name: π Build playground | |
run: pnpm dev:build | |
- name: π Lint project | |
run: pnpm lint | |
- name: π§ͺ Test project | |
run: pnpm test |