Skip to content

chore(deps): update react monorepo #910

chore(deps): update react monorepo

chore(deps): update react monorepo #910

Workflow file for this run

name: Checks
on:
- push
jobs:
checks:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4
- uses: actions/setup-node@39370e3970a6d050c480ffad4ff0ed4d3fdee5af # v4
with:
node-version-file: package.json
cache: yarn
cache-dependency-path: yarn.lock
- name: Install modules
run: corepack yarn
- name: Run lint check
run: corepack yarn run lint
- name: Run format check
run: corepack yarn run check:format
- name: Run type check
run: corepack yarn run check:types
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4
- uses: actions/setup-node@39370e3970a6d050c480ffad4ff0ed4d3fdee5af # v4
with:
node-version-file: package.json
cache: yarn
cache-dependency-path: yarn.lock
- name: Install modules
run: corepack yarn
- name: Run tests
run: corepack yarn run test