Add logging #57
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Production Deployment - Engine | |
env: | |
CLOUDFLARE_API_TOKEN: ${{ secrets.CLOUDFLARE_API_TOKEN }} | |
on: | |
push: | |
branches: | |
- main | |
paths: | |
- apps/engine/** | |
jobs: | |
deploy-production: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: oven-sh/setup-bun@v1 | |
with: | |
bun-version: latest | |
- name: Install dependencies | |
run: bun install | |
- name: 🔦 Run linter | |
run: bun run lint | |
working-directory: ./apps/engine | |
- name: 🪐 Check TypeScript | |
run: bun run check:types | |
working-directory: ./apps/engine | |
- name: 🧪 Run unit tests | |
run: bun test | |
working-directory: ./apps/engine | |
- name: Deploy Project Artifacts to Cloudflare | |
uses: cloudflare/wrangler-action@v3 | |
with: | |
packageManager: bun | |
apiToken: ${{ secrets.CLOUDFLARE_API_TOKEN }} | |
workingDirectory: "apps/engine" | |
wranglerVersion: "3.79.0" | |
command: deploy --minify src/index.ts --env production |