Skip to content

chore(deps): update dependency @testing-library/react to v14.2.1 #851

chore(deps): update dependency @testing-library/react to v14.2.1

chore(deps): update dependency @testing-library/react to v14.2.1 #851

Workflow file for this run

name: Continuous integration
on: push
jobs:
build:
name: Build, lint, and test on Node ${{ matrix.node }} and ${{ matrix.os }}
runs-on: ${{ matrix.os }}
strategy:
matrix:
node: ['18.x', '20.x']
os: [ubuntu-latest, windows-latest, macOS-latest]
steps:
- name: Checkout repo
uses: actions/checkout@v4
- name: Use Node ${{ matrix.node }}
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node }}
cache: npm
- name: Install dependencies
run: npm ci
- name: Check format
run: npm run check:format
- name: Check types
run: npm run check:types
- name: Run tests
run: npm run test
- name: Submit coverage
uses: codecov/codecov-action@v4
if: matrix.os == 'ubuntu-latest' && matrix.node == '20.x'
- name: Build
run: npm run build