Skip to content

Bump @testing-library/user-event from 14.4.3 to 14.5.2 #310

Bump @testing-library/user-event from 14.4.3 to 14.5.2

Bump @testing-library/user-event from 14.4.3 to 14.5.2 #310

Workflow file for this run

name: build
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
with:
ref: ${{ github.event.pull_request.head.sha }}
- uses: actions/setup-node@v2
with:
node-version: '14'
- name: Get yarn cache directory path
id: yarn-cache-dir-path
run: echo "::set-output name=dir::$(yarn cache dir)"
- name: Configure yarn cache
uses: actions/cache@v2
id: yarn-cache # use this to check for `cache-hit` (`steps.yarn-cache.outputs.cache-hit != 'true'`)
with:
path: |
${{ steps.yarn-cache-dir-path.outputs.dir }}
./node_modules
key: v1-yarn-${{ hashFiles('**/yarn.lock') }}
restore-keys: |
v1-yarn-
- run: yarn install
- run: yarn run build
- run: yarn run test