fix(deps): update react monorepo to v19 (major) #316
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Checks | |
on: | |
- pull_request | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
env: | |
DATABASE_FILENAME: .tmp/test_data.db | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-node@v4 | |
with: | |
node-version-file: package.json | |
cache: yarn | |
cache-dependency-path: yarn.lock | |
- name: Install modules | |
run: corepack yarn | |
- name: "Configure" | |
run: cp .env.example .env | |
- name: Run type check | |
run: corepack yarn run check:types | |
- name: Run lint check | |
run: corepack yarn run check:lint | |
- name: Run format check | |
run: corepack yarn run check:format | |
- name: Run build check | |
run: corepack yarn run check:build | |
- name: Run test check | |
run: corepack yarn run check:test |