DSE-45281: Fix the topics upload issue for the re-generate flow path #114
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |