Skip to content

Update dependency @testing-library/user-event to v14 - autoclosed #378

Update dependency @testing-library/user-event to v14 - autoclosed

Update dependency @testing-library/user-event to v14 - autoclosed #378

Workflow file for this run

name: Check change
on:
pull_request:
jobs:
check-change:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
with:
fetch-depth: 0
- uses: actions/setup-node@v3
with:
node-version: '14'
- uses: actions/github-script@v6
with:
script: |
const beachballVersion = require('./package.json').devDependencies.beachball;
if (typeof beachballVersion !== 'string') {
core.setFailed("Please check 'package.json', it should include 'beachball' in 'devDependencies'")
} else {
console.log(`Using beachball@${beachballVersion}...`)
await exec.exec('yarn', ['global', 'add', `beachball@${beachballVersion}`]);
}
- run: |
yarn checkchange