update #108
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 and Install Repositories | |
on: | |
pull_request: | |
branches: | |
- master | |
workflow_dispatch: | |
jobs: | |
build: | |
name: Build and Install Repositories | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout Repository | |
uses: actions/checkout@v3 | |
- name: Set up Node.js | |
uses: actions/setup-node@v3 | |
- name: Install pnpm | |
run: | | |
npm install -g pnpm | |
- name: Install Dependencies | |
run: | | |
pnpm install | |
# Build all packages (React, SvelteKit, Vue) | |
- name: Build All Packages | |
run: | | |
pnpm -r run build | |
- name: Install pnpm | |
run: | | |
npm install -g pnpm | |
- name: Install Dependencies | |
run: | | |
pnpm install | |