feat: webui #73
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: | |
branches: | |
- dev | |
pull_request: | |
branches: | |
- dev | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout source | |
uses: actions/checkout@v4 | |
- name: Setup node | |
uses: actions/setup-node@v4 | |
with: | |
node-version: 18 | |
- name: Install pnpm | |
uses: pnpm/action-setup@v2 | |
with: | |
version: 8 | |
- name: Clone submodules | |
run: | | |
cd ./packages | |
git clone https://github.com/biyuehu/fluoro | |
cd ../ | |
- name: Install packages | |
run: pnpm install --no-frozen-lockfile | |
- name: Build packages | |
run: pnpm build | |
- name: Zip packages | |
run: pnpm pack | |
- name: Upload artifacts | |
uses: actions/upload-artifact@v3 | |
with: | |
name: kotori-bot-root | |
path: | | |
kotori-bot-*.tgz |