-
Notifications
You must be signed in to change notification settings - Fork 509
36 lines (36 loc) · 1.03 KB
/
preview-engine.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
name: Preview Deployment - Engine
env:
CLOUDFLARE_API_TOKEN: ${{ secrets.CLOUDFLARE_API_TOKEN }}
on:
push:
branches-ignore:
- main
paths:
- apps/engine/**
jobs:
deploy-preview:
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.80.0"
command: deploy --minify src/index.ts --env staging