mirror of
https://github.com/rowboatlabs/rowboat.git
synced 2026-05-01 03:16:29 +02:00
strengthen repo verification and runtime coverage
Add clearer app docs plus targeted desktop, CLI, web, and worker tests so cross-surface regressions are caught earlier and the repo is easier to navigate.
This commit is contained in:
parent
2133d7226f
commit
4239f9f1ef
63 changed files with 3678 additions and 764 deletions
42
.github/workflows/rowboat-build.yml
vendored
42
.github/workflows/rowboat-build.yml
vendored
|
|
@ -20,12 +20,16 @@ jobs:
|
|||
- name: Install dependencies
|
||||
run: npm ci
|
||||
working-directory: apps/rowboat
|
||||
|
||||
|
||||
- name: Verify Rowboat
|
||||
run: npm run verify
|
||||
working-directory: apps/rowboat
|
||||
|
||||
- name: Build Rowboat
|
||||
run: npm run build
|
||||
working-directory: apps/rowboat
|
||||
|
||||
build-rowboatx:
|
||||
build-cli:
|
||||
runs-on: ubuntu-latest
|
||||
|
||||
steps:
|
||||
|
|
@ -34,7 +38,7 @@ jobs:
|
|||
- name: Setup Node.js
|
||||
uses: actions/setup-node@v6
|
||||
with:
|
||||
cache-dependency-path: 'apps/rowboat/package-lock.json'
|
||||
cache-dependency-path: 'apps/cli/package-lock.json'
|
||||
node-version: '24'
|
||||
cache: 'npm'
|
||||
|
||||
|
|
@ -42,6 +46,32 @@ jobs:
|
|||
run: npm ci
|
||||
working-directory: apps/cli
|
||||
|
||||
- name: Build Rowboat
|
||||
run: npm run build
|
||||
working-directory: apps/cli
|
||||
- name: Verify CLI
|
||||
run: npm run verify
|
||||
working-directory: apps/cli
|
||||
|
||||
test-desktop-core:
|
||||
runs-on: ubuntu-latest
|
||||
|
||||
steps:
|
||||
- uses: actions/checkout@v6
|
||||
|
||||
- name: Setup pnpm
|
||||
uses: pnpm/action-setup@v4
|
||||
with:
|
||||
version: 9
|
||||
|
||||
- name: Setup Node.js
|
||||
uses: actions/setup-node@v6
|
||||
with:
|
||||
node-version: '24'
|
||||
cache: 'pnpm'
|
||||
cache-dependency-path: 'apps/x/pnpm-lock.yaml'
|
||||
|
||||
- name: Install dependencies
|
||||
run: pnpm install --frozen-lockfile
|
||||
working-directory: apps/x
|
||||
|
||||
- name: Verify desktop app
|
||||
run: pnpm run verify
|
||||
working-directory: apps/x
|
||||
|
|
|
|||
9
.github/workflows/x-publish.yml
vendored
9
.github/workflows/x-publish.yml
vendored
|
|
@ -27,11 +27,8 @@ jobs:
|
|||
run: npm ci
|
||||
working-directory: apps/cli
|
||||
|
||||
# optional: run tests
|
||||
# - run: npm test
|
||||
|
||||
- name: Build
|
||||
run: npm run build
|
||||
- name: Verify
|
||||
run: npm run verify
|
||||
working-directory: apps/cli
|
||||
|
||||
- name: Pack
|
||||
|
|
@ -40,4 +37,4 @@ jobs:
|
|||
|
||||
- name: Publish to npm
|
||||
run: npm publish --access public
|
||||
working-directory: apps/cli
|
||||
working-directory: apps/cli
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue