Skip to content

chore(deps-dev): bump eslint-plugin-react-hooks from 5.2.0 to 7.0.1 #530

chore(deps-dev): bump eslint-plugin-react-hooks from 5.2.0 to 7.0.1

chore(deps-dev): bump eslint-plugin-react-hooks from 5.2.0 to 7.0.1 #530

Workflow file for this run

name: CI
on:
push:
branches:
- main
pull_request:
workflow_dispatch:
jobs:
test:
name: Test (Node ${{ matrix.node-version }})
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [20.x, 22.x]
fail-fast: false
steps:
- name: Checkout Repo
uses: actions/checkout@v4
- name: Install pnpm
uses: pnpm/action-setup@v3
with:
version: 9
- name: Setup Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
cache: 'pnpm'
- name: Install Dependencies
run: pnpm install --frozen-lockfile
- name: Build
run: pnpm run build
- name: Test
run: pnpm run test
- name: Upload Coverage
if: matrix.node-version == '20.x'
uses: codecov/codecov-action@v4
continue-on-error: true
with:
files: ./coverage/coverage-final.json
fail_ci_if_error: false