Skip to content

fix: resolve biome lint and formatting errors #9

fix: resolve biome lint and formatting errors

fix: resolve biome lint and formatting errors #9

Workflow file for this run

name: Release
on:
push:
branches: [main]
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
permissions:
contents: write
pull-requests: write
jobs:
release:
name: Release
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: oven-sh/setup-bun@v2
- run: bun install --frozen-lockfile
- name: Create Release PR or Publish
uses: changesets/action@v1
with:
publish: bun run lib prepare && bun changeset publish
version: bun changeset version
title: "chore: version packages"
commit: "chore: version packages"
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}