mirror of
https://github.com/AutoMaker-Org/automaker.git
synced 2026-01-30 22:32:04 +00:00
Resolves merge conflicts: - apps/server/src/routes/terminal/common.ts: Keep randomBytes import, use @automaker/utils for createLogger - apps/ui/eslint.config.mjs: Use main's explicit globals list with XMLHttpRequest and MediaQueryListEvent additions - apps/ui/src/components/views/terminal-view.tsx: Keep our terminal improvements (killAllSessions, beforeunload, better error handling) - apps/ui/src/config/terminal-themes.ts: Keep our search highlight colors for all themes - apps/ui/src/store/app-store.ts: Keep our terminal settings persistence improvements (merge function) 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
45 lines
946 B
YAML
45 lines
946 B
YAML
name: Test Suite
|
|
|
|
on:
|
|
pull_request:
|
|
branches:
|
|
- '*'
|
|
push:
|
|
branches:
|
|
- main
|
|
- master
|
|
|
|
jobs:
|
|
test:
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
- name: Checkout code
|
|
uses: actions/checkout@v4
|
|
|
|
- name: Setup project
|
|
uses: ./.github/actions/setup-project
|
|
with:
|
|
check-lockfile: 'true'
|
|
rebuild-node-pty-path: 'apps/server'
|
|
|
|
- name: Run package tests
|
|
run: npm run test:packages
|
|
env:
|
|
NODE_ENV: test
|
|
|
|
- name: Run server tests with coverage
|
|
run: npm run test:server:coverage
|
|
env:
|
|
NODE_ENV: test
|
|
|
|
# - name: Upload coverage reports
|
|
# uses: codecov/codecov-action@v4
|
|
# if: always()
|
|
# with:
|
|
# files: ./apps/server/coverage/coverage-final.json
|
|
# flags: server
|
|
# name: server-coverage
|
|
# env:
|
|
# CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }}
|