Skip to content

Richer <ote-events> cards, a fields attribute, and a calendar layout #82

Richer <ote-events> cards, a fields attribute, and a calendar layout

Richer <ote-events> cards, a fields attribute, and a calendar layout #82

Workflow file for this run

name: CI
on:
push:
branches: [main]
pull_request:
jobs:
ci:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v7
- uses: pnpm/action-setup@v6
- uses: actions/setup-node@v7
with:
node-version: 22
cache: pnpm
- run: pnpm install --frozen-lockfile
- run: pnpm lint
- run: pnpm build
# Not redundant with build: the apps are bundled by esbuild, which strips
# types without checking them, and the packages' tsc runs only over src/.
# This is the only step that type-checks the tests and the app sources.
- run: pnpm typecheck
- run: pnpm test