Skip to content

chore: add release notes 1.2.1 #114

chore: add release notes 1.2.1

chore: add release notes 1.2.1 #114

Workflow file for this run

name: CI
on: [push, pull_request]
jobs:
gate:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: oven-sh/setup-bun@v2
with:
bun-version: latest
- run: bun install --frozen-lockfile
- name: Lint
run: bun run lint
- name: Format check
run: bun run format:check
- name: svelte-check
run: bunx svelte-check --tsconfig ./tsconfig.json
- name: Tests
run: |
bun run test:stack-targeting
bun run test:highlight
bun run test:save-race
bun run test:app-flow
- name: Build
run: bun run build