Merge branch 'feature/alpha-completion' into development

This commit is contained in:
Jeremy
2025-11-20 20:32:10 -05:00
committed by GitHub
83 changed files with 5991 additions and 259 deletions

View File

@@ -21,7 +21,15 @@ jobs:
- name: Run Go tests
working-directory: backend
run: go test -v ./...
run: go test -v -coverprofile=coverage.out ./...
- name: Upload coverage to Codecov
uses: codecov/codecov-action@v5
with:
token: ${{ secrets.CODECOV_TOKEN }}
files: ./backend/coverage.out
flags: backend
fail_ci_if_error: true
- name: Run golangci-lint
uses: golangci/golangci-lint-action@0a35821d5c230e903fcfe077583637dea1b27b47 # v9.0.0
@@ -50,7 +58,15 @@ jobs:
- name: Run frontend tests
working-directory: frontend
run: npm test
run: npm run test:coverage
- name: Upload coverage to Codecov
uses: codecov/codecov-action@v5
with:
token: ${{ secrets.CODECOV_TOKEN }}
directory: ./frontend/coverage
flags: frontend
fail_ci_if_error: true
- name: Run frontend lint
working-directory: frontend