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
The table of contents is too big for display.
Diff view
Diff view
  •  
  •  
  •  
23 changes: 0 additions & 23 deletions .github/workflows/frontend-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,10 +9,7 @@ on:
- "package.json"
- "package-lock.json"
- "vite.config.ts"
<<<<<<< HEAD
=======
- "vitest.config.ts"
>>>>>>> main
- "tsconfig*.json"
- "eslint.config.js"

Expand All @@ -28,38 +25,18 @@ jobs:
uses: actions/setup-node@v4
with:
node-version: 22
# We are REMOVING the cache line temporarily to force a clean download

- name: Install dependencies
run: npm ci --legacy-peer-deps

- name: Type check
run: npm run typecheck

- name: Type check
run: npm run typecheck

- name: Lint
run: npm run lint

<<<<<<< HEAD
- name: i18n scan
run: npm run i18n:scan

- name: Test
run: npm run test:frontend
=======
- name: Test with coverage
run: npm run test:coverage

- name: Upload coverage to Codecov
uses: codecov/codecov-action@v4
with:
token: ${{ secrets.CODECOV_TOKEN }}
files: ./coverage/lcov.info
flags: frontend
fail_ci_if_error: false
>>>>>>> main

- name: Build
run: npm run build
16 changes: 1 addition & 15 deletions .github/workflows/server-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -49,24 +49,10 @@ jobs:
run: npm run migrate
working-directory: server

<<<<<<< HEAD
- name: Run tests
run: npm test
working-directory: server
=======
- name: Verify migrations (apply, idempotency, rollback)
run: npm run migrate:verify
working-directory: server

- name: Run tests with coverage
- name: Run tests
run: npm run test:coverage
working-directory: server

- name: Upload coverage to Codecov
uses: codecov/codecov-action@v4
with:
token: ${{ secrets.CODECOV_TOKEN }}
files: ./server/coverage/lcov.info
flags: backend
fail_ci_if_error: false
>>>>>>> main
Loading
Loading