Skip to content

Update CLAUDE.md with calendar docs, test patterns, and error convent… #22

Update CLAUDE.md with calendar docs, test patterns, and error convent…

Update CLAUDE.md with calendar docs, test patterns, and error convent… #22

Workflow file for this run

name: Deploy to Clever Cloud
on:
push:
branches: [main]
jobs:
check:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: oven-sh/setup-bun@v2
- run: bun install
- name: Typecheck
run: bun run typecheck
- name: Test
run: bun test
deploy:
needs: check
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Push to Clever Cloud
env:
CLEVER_TOKEN: ${{ secrets.CLEVER_TOKEN }}
CLEVER_SECRET: ${{ secrets.CLEVER_SECRET }}
run: |
git credential-store --file=/tmp/git-creds store <<EOF
protocol=https
host=push-n3-par-clevercloud-customers.services.clever-cloud.com
username=${CLEVER_TOKEN}
password=${CLEVER_SECRET}
EOF
git config credential.helper "store --file=/tmp/git-creds"
git push https://push-n3-par-clevercloud-customers.services.clever-cloud.com/app_e18aa250-0ebc-4a2d-ba9f-1383450de63c.git main:master --force