Skip to content

feat: launch architectural brief alpha #2

feat: launch architectural brief alpha

feat: launch architectural brief alpha #2

Workflow file for this run

name: Verify StackBrief
on:
push:
pull_request:
permissions:
contents: read
jobs:
cli:
name: CLI
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: "22"
cache: npm
- run: npm ci
- run: npm test
- run: npm run test:package
web:
name: Website
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: "22"
cache: npm
cache-dependency-path: apps/web/package-lock.json
- run: npm ci
working-directory: apps/web
- run: npm run build
working-directory: apps/web