Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
36 changes: 36 additions & 0 deletions .github/workflows/client-build.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,36 @@
name: Client Build

on:
push:
branches:
- main
pull_request:
branches:
- main

jobs:
test:
runs-on: ubuntu-latest

defaults:
run:
working-directory: ./app/client

steps:
- name: Checkout code
uses: actions/checkout@v2

- name: Set up Node.js
uses: actions/setup-node@v2
with:
node-version: 22

- name: Install dependencies
run: npm install

# Rollup is needed for CI build since its ubuntu and we are developing mostly on mac
- name: Install Rollup
run: npm i --save-dev @rollup/rollup-linux-x64-gnu

- name: Build Front End
run: npm run build
36 changes: 36 additions & 0 deletions .github/workflows/client-unit-test.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,36 @@
name: Client Unit Test

on:
push:
branches:
- main
pull_request:
branches:
- main

jobs:
test:
runs-on: ubuntu-latest

defaults:
run:
working-directory: ./app/client

steps:
- name: Checkout code
uses: actions/checkout@v2

- name: Set up Node.js
uses: actions/setup-node@v2
with:
node-version: 22

- name: Install dependencies
run: npm install

# Rollup is needed for CI build since its ubuntu and we are developing mostly on mac
- name: Install Rollup
run: npm i --save-dev @rollup/rollup-linux-x64-gnu

- name: Run unit tests
run: npm run test
Loading