Skip to content

chore(deps): update dependency eslint-plugin-react to v7.35.0 #957

chore(deps): update dependency eslint-plugin-react to v7.35.0

chore(deps): update dependency eslint-plugin-react to v7.35.0 #957

Workflow file for this run

name: ci
on:
pull_request:
branches:
- main
push:
branches:
- main
jobs:
ci:
name: ci
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
compatibility: [
{ react: '16.x', testing-library: '12.x' },
{ react: '17.x', testing-library: '12.x' },
{ react: '18.x', testing-library: '13.x' },
]
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Set up Node
uses: actions/setup-node@v4
with:
node-version: 20
- name: Get yarn cache directory path
id: yarn-cache-dir-path
run: echo "::set-output name=dir::$(yarn cache dir)"
- uses: actions/cache@v4
id: yarn-cache
with:
path: ${{ steps.yarn-cache-dir-path.outputs.dir }}
key: ${{ runner.os }}-yarn-${{ hashFiles('**/yarn.lock') }}
restore-keys: |
${{ runner.os }}-yarn-
- name: Install
run: yarn --frozen-lockfile
- name: Lint
run: yarn lint
- name: Install react
run: |
yarn remove @types/react;
yarn add -D \
react@${{ matrix.compatibility.react }} \
react-dom@${{ matrix.compatibility.react }} \
@types/react-dom@${{ matrix.compatibility.react }} \
@testing-library/react@${{ matrix.compatibility.testing-library }};
- name: Test
run: yarn test
- name: Build
run: yarn build