Skip to content

fix(deps): update dependency @inquirer/prompts to v7 #558

fix(deps): update dependency @inquirer/prompts to v7

fix(deps): update dependency @inquirer/prompts to v7 #558

name: CI - Deploy Cloudflare
on:
pull_request:
push:
branches:
- main
jobs:
ci-deploy-cloudflare:
name: CI - Deploy Cloudflare
runs-on: ubuntu-latest
defaults:
run:
working-directory: packages/deploy-cloudflare
steps:
- uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4
- run: corepack enable
- uses: actions/setup-node@v4
with:
node-version: 22
corepack: true
cache: 'pnpm'
- name: Install dependencies
run: pnpm i
working-directory: ./
- name: Build the app
run: pnpm build
- name: Verify build
run: |
if [ ! -f dist/_worker.js ]; then
echo "dist/_worker.js not found"
exit 1
fi
if [ ! -f dist/index.html ]; then
echo "dist/index.html not found"
exit 1
fi