Skip to content

Bump react-dom and @types/react-dom #51

Bump react-dom and @types/react-dom

Bump react-dom and @types/react-dom #51

Workflow file for this run

name: Main
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
prepare:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Use Node.js 20.x
uses: actions/setup-node@v4
with:
node-version: 20.x
cache: yarn
- name: Build Cache
uses: actions/cache@v4
id: build-cache
with:
path: |
./node_modules
./packages/**/dist
./packages/**/dist-types
./packages/**/node_modules
key: ${{ runner.os }}-build-${{ github.sha }}
- name: Install
run: yarn install --immutable
- name: Build
run: yarn build
checks:
runs-on: ubuntu-latest
needs:
- prepare
steps:
- uses: actions/checkout@v4
- name: Use Node.js 20.x
uses: actions/setup-node@v4
with:
node-version: 20.x
cache: yarn
- name: Build Cache
uses: actions/cache@v4
id: build-cache
with:
path: |
./node_modules
./packages/**/dist
./packages/**/dist-types
./packages/**/node_modules
key: ${{ runner.os }}-build-${{ github.sha }}
- name: Install
run: yarn install --immutable
- name: Lint
run: yarn lint
- name: Test
run: yarn test