Skip to content

Bump @testing-library/react from 13.4.0 to 14.1.2 #281

Bump @testing-library/react from 13.4.0 to 14.1.2

Bump @testing-library/react from 13.4.0 to 14.1.2 #281

Workflow file for this run

name: "Build and Test"
on:
push:
branches: [main]
pull_request:
jobs:
build-and-test:
runs-on: ubuntu-latest
steps:
- name: Check out repository
uses: actions/checkout@v2
- name: Set up Node.js
uses: actions/setup-node@v2
with:
node-version: 14.x
cache: 'yarn'
# The yarn cache is not node_modules
- name: Install dependencies
run: yarn --frozen-lockfile
- name: Run Jest tests
run: yarn test