Skip to content

refactor(notebook): startpage tab/label cleanup + ts-rest auth status #751

refactor(notebook): startpage tab/label cleanup + ts-rest auth status

refactor(notebook): startpage tab/label cleanup + ts-rest auth status #751

Workflow file for this run

name: CI
on:
push:
branches: [master, main]
pull_request:
branches: [master, main]
permissions:
contents: read
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
quality:
name: Quality Checks
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup pnpm
uses: pnpm/action-setup@v4
- name: Setup Node.js
uses: actions/setup-node@v4
with:
node-version: '22'
cache: 'pnpm'
- name: Install dependencies
run: pnpm install --frozen-lockfile
- name: TypeScript type check
run: pnpm typecheck
- name: ESLint
run: pnpm lint
- name: Prettier format check
run: pnpm format:check
test:
name: Tests
runs-on: ubuntu-latest
needs: quality
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup pnpm
uses: pnpm/action-setup@v4
- name: Setup Node.js
uses: actions/setup-node@v4
with:
node-version: '22'
cache: 'pnpm'
- name: Install dependencies
run: pnpm install --frozen-lockfile
- name: Run tests
run: pnpm test
continue-on-error: true
build:
name: Build ${{ matrix.app }}
runs-on: ubuntu-latest
needs: quality
strategy:
fail-fast: false
matrix:
app: [web, api, docs, sites]
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup pnpm
uses: pnpm/action-setup@v4
- name: Setup Node.js
uses: actions/setup-node@v4
with:
node-version: '22'
cache: 'pnpm'
- name: Install dependencies
run: pnpm install --frozen-lockfile --filter @gruenerator/${{ matrix.app }}...
- name: Build ${{ matrix.app }}
run: pnpm turbo run build --filter=@gruenerator/${{ matrix.app }}