Skip to content

chore(main): release wootty 0.2.13 #204

chore(main): release wootty 0.2.13

chore(main): release wootty 0.2.13 #204

Workflow file for this run

name: CI
on:
pull_request:
push:
branches:
- main
concurrency:
group: ci-${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
quality:
name: Lint Test Build
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v6
with:
fetch-depth: 0
- name: Setup pnpm
uses: pnpm/action-setup@v6
with:
version: 10.33.0
- name: Setup Node.js
uses: actions/setup-node@v6
with:
node-version: 24.14.1
cache: pnpm
- name: Setup Go
uses: actions/setup-go@v6
with:
go-version: "1.26.2"
- name: Install dependencies
run: pnpm install --frozen-lockfile
- name: Lint (check-only + typecheck)
run: pnpm lint:ci
- name: Unit and integration tests
run: pnpm test
- name: Build
run: pnpm build
e2e:
name: Playwright E2E
runs-on: ubuntu-latest
needs: quality
steps:
- name: Checkout
uses: actions/checkout@v6
- name: Setup pnpm
uses: pnpm/action-setup@v6
with:
version: 10.33.0
- name: Setup Node.js
uses: actions/setup-node@v6
with:
node-version: 24.14.1
cache: pnpm
- name: Setup Go
uses: actions/setup-go@v6
with:
go-version: "1.26.2"
- name: Install dependencies
run: pnpm install --frozen-lockfile
- name: Install Playwright browsers
run: pnpm --filter @icoretech/wootty-web exec playwright install --with-deps chromium
- name: Browser E2E tests
run: pnpm test:e2e