Skip to content

chore: changeset #39

chore: changeset

chore: changeset #39

Workflow file for this run

name: Continuous Integration
on:
push:
branches:
- main
pull_request:
workflow_dispatch:
jobs:
ci:
runs-on: ubuntu-latest
timeout-minutes: 40
concurrency:
group: ci-${{ github.ref }}
cancel-in-progress: true
steps:
- uses: actions/checkout@v3
name: Checkout
with:
fetch-depth: 0
- uses: dtinth/setup-github-actions-caching-for-turbo@v1
- name: Setup bun
uses: oven-sh/setup-bun@v1
- name: Install dependencies
run: bun install
- name: Run build
run: bun run build
- name: Run tests
run: bun test