e3ce011674
ci / typecheck (map[dir:apps/portal name:portal]) (push) Failing after 10m29s
ci / typecheck (map[dir:apps/booking name:booking]) (push) Failing after 10m50s
ci / test (push) Failing after 13m22s
ci / typecheck (map[dir:services/platform-api name:platform-api]) (push) Failing after 14m11s
ci / typecheck (map[dir:apps/website name:website]) (push) Failing after 14m36s
actions/setup-node writes node into a tool-cache shared across concurrent jobs; with capacity>1 one job execs node while another writes it → "/usr/bin/env: 'node': Text file busy". The catthehacker runner image already ships node 24, and corepack (bundled) reads each app's packageManager — so setup-node is unneeded. Removing it eliminates the shared-cache race.
53 lines
1.5 KiB
YAML
53 lines
1.5 KiB
YAML
# CI for the dezky monorepo (Gitea Actions). Installs deps and typechecks each
|
|
# app/service independently — the repo is NOT a single pnpm workspace yet, so
|
|
# every app has its own lockfile and is built from its own directory.
|
|
name: ci
|
|
|
|
on:
|
|
push:
|
|
branches: [main]
|
|
pull_request:
|
|
|
|
jobs:
|
|
typecheck:
|
|
runs-on: ubuntu-latest
|
|
strategy:
|
|
fail-fast: false
|
|
matrix:
|
|
target:
|
|
- { name: platform-api, dir: services/platform-api }
|
|
- { name: portal, dir: apps/portal }
|
|
- { name: booking, dir: apps/booking }
|
|
- { name: website, dir: apps/website }
|
|
defaults:
|
|
run:
|
|
working-directory: ${{ matrix.target.dir }}
|
|
steps:
|
|
- uses: actions/checkout@v4
|
|
|
|
# Node comes from the runner image (catthehacker ships node 24) — NOT
|
|
# actions/setup-node, whose shared tool-cache races across concurrent jobs
|
|
# ("node: Text file busy"). corepack (bundled with node) reads each app's
|
|
# own packageManager — what this per-app monorepo (no root package.json) needs.
|
|
- name: Install
|
|
run: |
|
|
corepack enable
|
|
pnpm install --frozen-lockfile
|
|
|
|
- name: Typecheck
|
|
run: pnpm typecheck
|
|
|
|
test:
|
|
runs-on: ubuntu-latest
|
|
defaults:
|
|
run:
|
|
working-directory: services/platform-api
|
|
steps:
|
|
- uses: actions/checkout@v4
|
|
- name: Install
|
|
run: |
|
|
corepack enable
|
|
pnpm install --frozen-lockfile
|
|
- name: Test
|
|
run: pnpm test
|