Skip to content

chore(package): update @testing-library/react 13.4.0 β†’ 15.0.7 (major) #736

chore(package): update @testing-library/react 13.4.0 β†’ 15.0.7 (major)

chore(package): update @testing-library/react 13.4.0 β†’ 15.0.7 (major) #736

Workflow file for this run

name: Code Check
on:
push:
branches:
- main
pull_request: {}
concurrency:
group: ${{ github.job }}-${{ github.ref }}
cancel-in-progress: true
jobs:
lint:
name: ⬣ ESLint, Κ¦ TypeScript, πŸ’… Prettier, and πŸƒ Test
runs-on: ubuntu-latest
steps:
- name: ⬇️ Checkout repo
uses: actions/checkout@v4
- name: 🀌 Setup pnpm
uses: pnpm/action-setup@v4
with:
version: 9
- name: βŽ” Setup node
uses: actions/setup-node@v4
with:
node-version: 20
cache: 'pnpm'
- name: πŸ“₯ Download deps
run: pnpm install --frozen-lockfile
- name: πŸ”¬ Lint
run: pnpm run lint:strict
- name: πŸ”Ž Type check
run: pnpm run typecheck
- name: πŸ’… Prettier check
run: pnpm run format:check
- name: πŸƒ Run jest
run: pnpm run test