DSE-45281: Fix the topics upload issue for the re-generate flow path #115
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 Test | |
on: | |
push: | |
branches: | |
- main | |
pull_request: | |
branches: | |
- main | |
- dev | |
jobs: | |
client-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 --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: Run unit tests | |
run: npm run test |