fix(types): add shell types for react-reconciler changes #2219
Workflow file for this run
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: Test | |
on: | |
push: | |
branches: | |
- 'master' | |
pull_request: {} | |
jobs: | |
build: | |
name: Build, lint, and test | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout repo | |
uses: actions/checkout@v4 | |
- name: Use Node 18 | |
uses: actions/setup-node@v4 | |
with: | |
node-version: 18 | |
- name: Install deps and build (with cache) | |
uses: bahmutov/npm-install@v1 | |
with: | |
install-command: yarn --immutable --silent | |
- name: Check types | |
run: yarn run typecheck | |
- name: Check lint | |
run: yarn run eslint | |
- name: Build | |
run: yarn run build | |
- name: Jest run | |
run: yarn run dev && yarn run test | |
- name: Report Fiber size | |
run: yarn run analyze-fiber | |
- name: Report Test Renderer size | |
run: yarn run analyze-test |