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 458d50b
Showing 1 changed file with 30 additions and 0 deletions.
30 changes: 30 additions & 0 deletions .github/workflows/stoream-webui.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
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'
- 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 458d50b

Please sign in to comment.