Skip to content

feat: add render profiling and performance analysis #3

feat: add render profiling and performance analysis

feat: add render profiling and performance analysis #3

name: Snapshot Release
on:
push:
branches: [dev]
concurrency: ${{ github.workflow }}-${{ github.ref }}
jobs:
snapshot:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: oven-sh/setup-bun@v2
with:
bun-version: latest
- name: Install dependencies
run: bun install
- name: Build
run: bun run build
- name: Unit tests
run: bun run test:unit
- name: Publish snapshot to npm
run: |
npx changeset version --snapshot canary
npx changeset publish --tag canary
env:
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}