chore(deps): update dependency happy-dom to v13.10.1 #4970
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: main | |
on: | |
push: | |
branches: | |
- main | |
pull_request: | |
branches: | |
- main | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
permissions: | |
# Required to check out the code | |
contents: read | |
# Required to put a comment into the pull-request | |
pull-requests: write | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Install modules | |
uses: ./.github/composite-actions/install | |
- name: Run linters | |
run: pnpm lint | |
- name: Run tests | |
run: pnpm test:ci | |
- name: 'Report Coverage' | |
# Set if: always() to also generate the report if tests are failing | |
# Only works if you set `reportOnFailure: true` in your vite config | |
if: always() | |
uses: davelosert/vitest-coverage-report-action@v2 |