chore: update dependency @types/react to v19 #8369
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: build | |
on: | |
- push | |
- pull_request | |
jobs: | |
build: | |
name: build | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-node@v4 | |
with: | |
node-version: 20 | |
- name: restore lerna | |
uses: actions/cache@v4 | |
with: | |
path: | | |
node_modules | |
*/*/node_modules | |
key: ${{ runner.os }}-${{ hashFiles('**/yarn.lock') }}-v2 | |
- run: yarn install --frozen-lockfile | |
# Build application to check if the system works or not | |
# TODO: Build script for spindle-icon should be added | |
- name: build application | |
run: | | |
yarn lerna run --scope @openameba/spindle-hooks build | |
yarn lerna run --scope @openameba/spindle-ui storybook:build | |
yarn lerna run --scope @openameba/spindle-ui build | |
yarn build:extensionReplace |