Skip to content

chore(deps): update dependency happy-dom to v12 #1755

chore(deps): update dependency happy-dom to v12

chore(deps): update dependency happy-dom to v12 #1755

Workflow file for this run

name: Build and Release
on:
push:
paths-ignore:
- 'packages/docs/**'
- 'README.md'
concurrency: ${{ github.workflow }}-${{ github.ref }}
jobs:
build_and_release:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@f43a0e5ff2bd294095638e18286ca9a3d1956744 # v3
- uses: pnpm/action-setup@v2
- uses: actions/setup-node@5e21ff4d9bc1a8cf6de233a3057d20ec6b3fb69d # v3
with:
node-version-file: '.nvmrc'
cache: 'pnpm'
registry-url: 'https://registry.npmjs.org'
- run: pnpm i
- name: Lint
run: pnpm -r run lint
- name: Test
run: pnpm -r test
- name: Upload code coverage
uses: paambaati/codeclimate-action@4cace242c6e0a2dd554bbb3cc12c58047d8af3e5 # v5.0.0
env:
CC_TEST_REPORTER_ID: ${{secrets.CC_TEST_REPORTER_ID}}
with:
coverageLocations: ${{github.workspace}}/packages/core/coverage/lcov.info:lcov
prefix: test
- name: Build
run: pnpm -r run build
- name: Create Release Pull Request or Publish to npm
id: changesets
if: github.ref_name == 'main'
uses: changesets/action@v1
with:
version: pnpm run ci:version # pnpm changeset version && pnpm install --lockfile-only
publish: pnpm run ci:publish
commit: 'chore: update versions'
title: 'Release: new versions'
createGithubReleases: false
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}