chore(deps-dev): bump electron from 44.0.0 to 44.1.0 in /apps/browser #417
Workflow file for this run
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: CI | |
| on: | |
| push: | |
| pull_request: | |
| workflow_dispatch: | |
| permissions: | |
| contents: read | |
| jobs: | |
| quality: | |
| strategy: | |
| fail-fast: false | |
| matrix: | |
| os: [macos-14, windows-2025, ubuntu-24.04] | |
| runs-on: ${{ matrix.os }} | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - uses: pnpm/action-setup@v4 | |
| with: | |
| version: 10.33.2 | |
| - uses: actions/setup-node@v4 | |
| with: | |
| node-version: 24 | |
| cache: pnpm | |
| - run: pnpm install --frozen-lockfile | |
| - run: pnpm typecheck | |
| - run: pnpm test | |
| - run: pnpm docs:check | |
| - run: pnpm build | |
| docker: | |
| runs-on: ubuntu-24.04 | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: Build runtime image | |
| run: docker build -f infra/docker/Dockerfile --build-arg START_FILE=services/gateway/dist/server.js . | |
| integration: | |
| runs-on: ubuntu-24.04 | |
| services: | |
| postgres: | |
| image: postgres:16.13-bookworm | |
| env: | |
| POSTGRES_DB: archetype | |
| POSTGRES_USER: archetype | |
| POSTGRES_PASSWORD: archetype | |
| ports: | |
| - 5432:5432 | |
| options: >- | |
| --health-cmd "pg_isready -U archetype -d archetype" | |
| --health-interval 5s --health-timeout 5s --health-retries 20 | |
| mysql: | |
| image: mysql:8.4 | |
| env: | |
| MYSQL_DATABASE: demo | |
| MYSQL_USER: demo | |
| MYSQL_PASSWORD: demo | |
| MYSQL_ROOT_PASSWORD: root-demo | |
| ports: | |
| - 3306:3306 | |
| options: >- | |
| --health-cmd "mysqladmin ping -h localhost -uroot -proot-demo" | |
| --health-interval 5s --health-timeout 5s --health-retries 30 | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - uses: pnpm/action-setup@v4 | |
| with: | |
| version: 10.33.2 | |
| - uses: actions/setup-node@v4 | |
| with: | |
| node-version: 24 | |
| cache: pnpm | |
| - run: pnpm install --frozen-lockfile | |
| - name: Run PostgreSQL and MySQL integration tests | |
| run: pnpm test:integration | |
| env: | |
| TEST_PLATFORM_POSTGRES_URL: postgres://archetype:archetype@localhost:5432/archetype | |
| TEST_POSTGRES_URL: postgres://archetype:archetype@localhost:5432/archetype | |
| TEST_MYSQL_URL: mysql://demo:demo@localhost:3306/demo |