Skip to content

Bump @testing-library/jest-dom from 5.16.5 to 6.4.0 #413

Bump @testing-library/jest-dom from 5.16.5 to 6.4.0

Bump @testing-library/jest-dom from 5.16.5 to 6.4.0 #413

Workflow file for this run

name: CI
on:
push:
branches:
- master
- develop
pull_request:
branches:
- master
- develop
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Begin CI...
uses: actions/checkout@v2
- name: Use Node 12
uses: actions/setup-node@v1
with:
node-version: 12.x
- name: Use cached node_modules
uses: actions/cache@v1
with:
path: node_modules
key: nodeModules-${{ hashFiles('**/package-lock.lock') }}
restore-keys: |
nodeModules-
- name: Install dependencies
run: npm install
env:
CI: true
- name: Test
run: npm test
env:
CI: true