Skip to content

Bump @testing-library/jest-dom from 6.1.2 to 6.2.0 #11472

Bump @testing-library/jest-dom from 6.1.2 to 6.2.0

Bump @testing-library/jest-dom from 6.1.2 to 6.2.0 #11472

Workflow file for this run

name: JavaScript
on:
push:
jobs:
lint-tests:
name: "Lint and test the codebase"
environment: production
runs-on: ubuntu-latest
steps:
- name: Check out repo
uses: actions/checkout@v3
- name: Setup Node.js
uses: actions/setup-node@v3
with:
node-version: "18"
cache: "yarn"
- name: Install dependencies
run: yarn install
- name: Lint codebase
run: yarn run lint
- name: Test codebase
run: yarn run test --watchAll=false --coverage --json --outputFile ./codecov-report.json
- name: Build codebase
run: yarn build