Skip to content

Send message via text/plain #15

Send message via text/plain

Send message via text/plain #15

Workflow file for this run

name: CI
on:
push:
jobs:
CI:
runs-on: ubuntu-latest
steps:
- name: ⬇️ Checkout repo
uses: actions/checkout@v3
- name: 🔥 Install bun
uses: oven-sh/setup-bun@v1
with:
bun-version: latest
- name: 💾 Setup bun cache
uses: actions/cache@v4
with:
path: ~/.bun/install/cache
key: ${{ runner.os }}-bun-store-v1-${{ hashFiles('**/bun.lockb') }}
restore-keys: |
${{ runner.os }}-bun-store-v1
- name: 📥 Download deps
run: bun install --frozen-lockfile
- name: 🔍 Lint
run: bun run lint
- name: 🧐 Type check
run: bun run typecheck
- name: 🧪 Test
run: bun test
- name: 📦 Build
run: bun run build