Skip to content

bump version to 0.0.27 #31

bump version to 0.0.27

bump version to 0.0.27 #31

Workflow file for this run

name: Frontend CI
on:
push:
branches: [main]
paths:
- "src/**"
- "package.json"
- "bun.lock"
- "tsconfig*.json"
- "vite.config.*"
- "dprint.json"
pull_request:
branches: [main]
paths:
- "src/**"
- "package.json"
- "bun.lock"
- "tsconfig*.json"
- "vite.config.*"
- "dprint.json"
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
frontend:
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v4
with:
submodules: true
- name: Setup bun
uses: oven-sh/setup-bun@v2
- name: Install frontend dependencies
run: bun install --frozen-lockfile
- name: Typecheck and build frontend
run: bun run build
- name: Install dprint
run: curl -fsSL https://dprint.dev/install.sh | sh && echo "$HOME/.dprint/bin" >> $GITHUB_PATH
- name: Check formatting
run: dprint check