Skip to content

Commit

Permalink
[webui]: add github workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
muqiuhan committed May 17, 2024
1 parent 6883e21 commit 9df26a9
Showing 1 changed file with 31 additions and 0 deletions.
31 changes: 31 additions & 0 deletions .github/workflows/stoream-webui.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
name: stoream-webui
on:
push:

jobs:
build:
runs-on: ubuntu-22.04
strategy:
matrix:
node-version: [20]
steps:
- uses: actions/checkout@v4
- name: Install pnpm
uses: pnpm/action-setup@v3
with:
version: 9
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
cache: 'pnpm'
working-directory: ./stoream-webui
- name: Install dependencies
run: pnpm install
working-directory: ./stoream-webui
- name: Rescript build
run: pnpm res:build
working-directory: ./stoream-webui
- name: Rescript build
run: pnpm build
working-directory: ./stoream-webui

0 comments on commit 9df26a9

Please sign in to comment.