Skip to content

Bump @testing-library/jest-dom from 5.16.5 to 5.17.0 (#33) #71

Bump @testing-library/jest-dom from 5.16.5 to 5.17.0 (#33)

Bump @testing-library/jest-dom from 5.16.5 to 5.17.0 (#33) #71

Workflow file for this run

name: Main CI
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
node-version:
- 16.x
- 18.x
steps:
- uses: actions/checkout@v3
- name: Touch Lock File
run: touch yarn.lock
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
cache: yarn
- name: Install
run: yarn install
- name: Linter
run: yarn lint
- name: Test
run: yarn test