Skip to content

Handle malformed whole-line quoted Tradovate CSV rows #57

Handle malformed whole-line quoted Tradovate CSV rows

Handle malformed whole-line quoted Tradovate CSV rows #57

Workflow file for this run

name: CI
on:
pull_request:
branches:
- develop
- main
push:
branches:
- develop
- main
concurrency:
group: ci-${{ github.ref }}
cancel-in-progress: true
jobs:
backend:
name: Backend Tests
runs-on: ubuntu-latest
steps:
- name: Check out repository
uses: actions/checkout@v6
- name: Set up Node.js
uses: actions/setup-node@v6
with:
node-version: 20
cache: npm
cache-dependency-path: backend/package-lock.json
- name: Install backend dependencies
working-directory: backend
run: npm ci
- name: Run backend tests
working-directory: backend
run: npm test
frontend:
name: Frontend Build
runs-on: ubuntu-latest
steps:
- name: Check out repository
uses: actions/checkout@v6
- name: Set up Node.js
uses: actions/setup-node@v6
with:
node-version: 20
cache: npm
cache-dependency-path: frontend/package-lock.json
- name: Install frontend dependencies
working-directory: frontend
run: npm ci
- name: Build frontend
working-directory: frontend
run: npm run build