Skip to content

fix: deploay to cloudflare using wrangler #30

fix: deploay to cloudflare using wrangler

fix: deploay to cloudflare using wrangler #30

Workflow file for this run

name: ci
on:
pull_request:
branches:
- '**'
jobs:
test:
name: test
runs-on: ubuntu-24.04-arm
# Cache even on failure
continue-on-error: true
steps:
- name: Deep checkout branch
uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Setup pnpm
uses: pnpm/action-setup@v4
with:
run_install: false
- name: Setup node
uses: actions/setup-node@v6
with:
node-version: 24
cache: 'pnpm'
- name: Install dependencies
run: pnpm i --no-frozen-lockfile --prefer-offline
- name: Build affected packages
shell: bash
run: pnpm --filter '...[origin/main]...' build
- name: Test lint, type and unit
run: pnpm --filter '...[origin/main]' '/test:(type|lint|unit)/'