Skip to content

feat: simplify originalIndex and add play init command #62

feat: simplify originalIndex and add play init command

feat: simplify originalIndex and add play init command #62

Workflow file for this run

name: CI
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
bun-version: [latest]
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup Bun
uses: oven-sh/setup-bun@v2
with:
bun-version: ${{ matrix.bun-version }}
- name: Install dependencies
run: bun install
- name: Lint
run: bun run lint
- name: Build
run: bun run build