Skip to content

DSE-45281: Fix the topics upload issue for the re-generate flow path #114

DSE-45281: Fix the topics upload issue for the re-generate flow path

DSE-45281: Fix the topics upload issue for the re-generate flow path #114

Workflow file for this run

name: Client Build
on:
push:
branches:
- main
pull_request:
branches:
- main
- dev
jobs:
client-build:
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 --verbose
# 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