Skip to content

chore(deps): bump jsdom from 23.0.1 to 24.0.0 (#159) #122

chore(deps): bump jsdom from 23.0.1 to 24.0.0 (#159)

chore(deps): bump jsdom from 23.0.1 to 24.0.0 (#159) #122

Workflow file for this run

name: Release
on:
push:
branches:
- main
concurrency: ${{ github.workflow }}-${{ github.ref }}
jobs:
release:
name: Release
if: github.repository_owner == 'pmndrs'
runs-on: ubuntu-latest
steps:
- name: Checkout Repo
uses: actions/checkout@v2
- name: Setup Node.js 20.x
uses: actions/setup-node@v2
with:
node-version: 20.x
- name: Install Dependencies
run: yarn
- name: Create Release Pull Request or Publish to npm
id: changesets
uses: changesets/action@v1
with:
version: yarn bump
publish: yarn release
commit: "chore(changeset): release packages"
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}