Skip to content

fix(deps): update dependency eslint-plugin-react to v7.36.0 (#2194) #12066

fix(deps): update dependency eslint-plugin-react to v7.36.0 (#2194)

fix(deps): update dependency eslint-plugin-react to v7.36.0 (#2194) #12066

Workflow file for this run

name: CI
on:
merge_group:
push:
branches:
- main
pull_request:
jobs:
typecheck:
runs-on: ubuntu-22.04
steps:
- uses: actions/[email protected]
- uses: pnpm/[email protected]
- name: Use Node.js
uses: actions/[email protected]
with:
node-version: 20
check-latest: true
cache: "pnpm"
- run: pnpm install
- run: pnpm run build
- run: pnpm tsc --noEmit
lint:
runs-on: ubuntu-22.04
steps:
- uses: actions/[email protected]
- uses: pnpm/[email protected]
- name: Use Node.js
uses: actions/[email protected]
with:
node-version: 20
check-latest: true
cache: "pnpm"
- run: pnpm install
- run: pnpm run build
- run: pnpm run lint
test:
runs-on: ubuntu-24.04
strategy:
matrix:
node: ["20"]
steps:
- uses: actions/[email protected]
- uses: pnpm/[email protected]
- name: Use Node.js
uses: actions/[email protected]
with:
node-version: ${{ matrix.node }}
check-latest: true
cache: "pnpm"
- run: pnpm install
- run: pnpm run build
- run: pnpm run test:coverage
- uses: codecov/[email protected]
with:
files: packages/**/coverage/cobertura-coverage.xml
token: ${{ secrets.CODECOV_TOKEN }}
verbose: true
test-types:
runs-on: ubuntu-22.04
strategy:
matrix:
node: ["20"]
steps:
- uses: actions/[email protected]
- uses: pnpm/[email protected]
- name: Use Node.js
uses: actions/[email protected]
with:
node-version: ${{ matrix.node }}
check-latest: true
cache: "pnpm"
- run: pnpm install
- run: pnpm run build
- run: pnpm run test:types