Skip to content

Update dependency @testing-library/dom to v8.20.1 #99

Update dependency @testing-library/dom to v8.20.1

Update dependency @testing-library/dom to v8.20.1 #99

Workflow file for this run

name: Build and test
on:
push:
branches:
- master
pull_request:
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Setup Node.js
uses: actions/setup-node@v4
with:
cache: 'yarn'
- name: Install NPM packages
run: yarn install --frozen-lockfile
- name: Check Linting Rules and Types
run: yarn lint
- name: test
run: yarn test --coverage
- name: Upload coverage
uses: actions/upload-artifact@v4
with:
name: coverage
path: |
coverage
!coverage/lcov-report
- name: build
run: yarn build