mirror of
https://github.com/Unkn0wnCat/matrix-veles.git
synced 2025-04-28 17:56:49 +02:00
33 lines
701 B
YAML
33 lines
701 B
YAML
name: Build WebUI
|
|
|
|
on:
|
|
push:
|
|
|
|
jobs:
|
|
update:
|
|
name: Build Site
|
|
runs-on: ubuntu-latest
|
|
defaults:
|
|
run:
|
|
working-directory: webui
|
|
|
|
steps:
|
|
- uses: actions/checkout@v3
|
|
name: Checkout Repo
|
|
|
|
- name: Use Node.js
|
|
uses: actions/setup-node@v3
|
|
with:
|
|
node-version: "18.x"
|
|
|
|
- run: yarn
|
|
name: Install Dependencies
|
|
|
|
- run: yarn build
|
|
name: Build Site
|
|
|
|
#- uses: actions/upload-artifact@v3
|
|
# name: Upload Artifacts
|
|
# with:
|
|
# name: site
|
|
# path: public
|