Skip to content

fix(render): Greptile feedback on PR #83 render typings #120

fix(render): Greptile feedback on PR #83 render typings

fix(render): Greptile feedback on PR #83 render typings #120

Workflow file for this run

name: CI
on:
pull_request:
branches:
- main
- develop
push:
branches:
- develop
jobs:
test:
name: Test
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Setup Bun
uses: oven-sh/setup-bun@v2
with:
bun-version: latest
- name: Install dependencies
run: bun install
- name: Build project
run: bun run build
- name: Run linter
run: bun run lint || echo "Linter not configured, skipping..."
- name: Run tests
run: bun run test
- name: Test summary
if: always()
run: |
if [ $? -eq 0 ]; then
echo "✅ All tests passed!"
else
echo "❌ Tests failed!"
exit 1
fi