Skip to content

Refactor/break UI into components #8

Refactor/break UI into components

Refactor/break UI into components #8

Workflow file for this run

name: MVP Frontend Build
on:
pull_request:
branches:
- main
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v2
- name: Set up Node.js
uses: actions/setup-node@v2
- name: Install dependencies
run: |
cd mvp/client/ui
npm install
- name: Run tests
run: |
cd mvp/client/ui
npm run test
- name: Build frontend
run: |
cd mvp/client/ui
npm run build