Skip to content

Bump @testing-library/jest-dom from 5.16.5 to 6.3.0 #913

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

Bump @testing-library/jest-dom from 5.16.5 to 6.3.0 #913

Workflow file for this run

name: Test
on:
pull_request:
push:
branches:
- master
jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [20.x]
steps:
- uses: actions/checkout@v1
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v1
with:
node-version: ${{ matrix.node-version }}
- name: npm install
run: npm ci
- name: npm test
run: npm run test:ci
- name: Upload coverage to Codecov
uses: codecov/codecov-action@v1
with:
token: ${{ secrets.CODECOV_TOKEN }}
file: ./coverage/clover.xml
flags: unittests
name: lib
fail_ci_if_error: false