Skip to content

Chore(deps-dev): bump @testing-library/react from 15.0.7 to 16.0.0 #270

Chore(deps-dev): bump @testing-library/react from 15.0.7 to 16.0.0

Chore(deps-dev): bump @testing-library/react from 15.0.7 to 16.0.0 #270

Workflow file for this run

name: Development
on:
pull_request:
types:
- opened
- edited
- synchronize
- reopened
jobs:
lint:
name: Lint
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [latest]
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Setup pnpm
uses: pnpm/action-setup@v3
with:
version: 8
- name: Using Node.js ${{matrix.node-version}}
uses: actions/setup-node@v4
with:
node-version: ${{matrix.node-version}}
cache: 'pnpm'
- name: Install dependencies
run: pnpm install
- name: Lint check
run: pnpm lint:check
test:
name: Test
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [latest]
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Setup pnpm
uses: pnpm/action-setup@v3
with:
version: 8
- name: Using Node.js ${{matrix.node-version}}
uses: actions/setup-node@v4
with:
node-version: ${{matrix.node-version}}
cache: 'pnpm'
- name: Install dependencies
run: pnpm install
- name: Test check
run: pnpm test:check