Skip to content

feat: Add mobile optimization for statistics #3

feat: Add mobile optimization for statistics

feat: Add mobile optimization for statistics #3

name: Deploy Website
on:
push:
branches: [development]
paths:
- "web/**"
- ".github/workflows/deploy-landing.yml"
jobs:
deploy:
runs-on: ubuntu-latest
defaults:
run:
working-directory: web
steps:
- uses: actions/checkout@v4
- name: Setup Bun
uses: oven-sh/setup-bun@v2
with:
bun-version: latest
- name: Install dependencies
run: bun install --frozen-lockfile
- name: Build
run: bun run build
- name: Deploy to Cloudflare Pages
uses: cloudflare/wrangler-action@v3
with:
apiToken: ${{ secrets.CLOUDFLARE_API_TOKEN }}
accountId: ${{ secrets.CLOUDFLARE_ACCOUNT_ID }}
command: pages deploy web/dist --project-name=myspeed --branch=development