Skip to content

chore(deps): bump @testing-library/react to ^15.0.0 (#1043) #696

chore(deps): bump @testing-library/react to ^15.0.0 (#1043)

chore(deps): bump @testing-library/react to ^15.0.0 (#1043) #696

Workflow file for this run

name: CD
on:
push:
branches:
- main
jobs:
release:
name: Prepare or publish release
runs-on: ubuntu-latest
steps:
- name: Checkout Repo
uses: actions/checkout@v4
with:
# This makes Actions fetch all Git history so that Changesets can generate changelogs with the correct commits
fetch-depth: 0
# synced with #node-version
- name: Setup Node.js 16.x
uses: actions/setup-node@v3
with:
node-version: 16.x
- name: Install Dependencies
run: yarn
- name: Create Release Pull Request or Publish to npm
id: changesets
uses: changesets/action@v1
with:
publish: yarn release
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
NPM_TOKEN: ${{ secrets.NPM_AUTOMATION_TOKEN }}