Skip to content

fix(agents-file): always commit agents file, soften auto-maintained w… #87

fix(agents-file): always commit agents file, soften auto-maintained w…

fix(agents-file): always commit agents file, soften auto-maintained w… #87

Workflow file for this run

name: CI
on:
push:
branches: [main, 'release/**']
pull_request:
branches: [main]
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: oven-sh/setup-bun@v2
with:
bun-version: latest
- run: bun install
- name: Typecheck
run: bun run typecheck
- name: Test
run: bun test
- name: Pack tarball
if: startsWith(github.ref, 'refs/heads/release/')
run: npm pack
- name: Upload tarball
if: startsWith(github.ref, 'refs/heads/release/')
uses: actions/upload-artifact@v4
with:
name: npm-tarball
path: '*.tgz'