Skip to content

polish(editor): hide the profile switcher in the events list view #74

polish(editor): hide the profile switcher in the events list view

polish(editor): hide the profile switcher in the events list view #74

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