Skip to content

ci: add ci/cd workflows #1

ci: add ci/cd workflows

ci: add ci/cd workflows #1

Workflow file for this run

name: Build UI Workflow
on:
pull_request:
branches:
- main
jobs:
build:
name: Build Job
runs-on: ubuntu-latest
defaults:
run:
working-directory: ui
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Install dependencies
run: npm ci
- name: Run build
run: npm run build