Skip to content

fix: bun support

fix: bun support #3

Workflow file for this run

# .github/workflows/ci.yml
on:
pull_request:
push:
branches: [be-deploy]
jobs:
ci:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: oven-sh/setup-bun@v2
with:
bun-version: latest
- name: Backend
run: |
bun install
- name: Deploy
if: github.ref == 'refs/heads/be-deploy'
env:
deploy_url: ${{ secrets.RENDER_DEPLOY_HOOK_URL }}
run: |
curl "$deploy_url"