Skip to content

fix(deps): update dependency zod to ^3.25.49 (#1829) #124

fix(deps): update dependency zod to ^3.25.49 (#1829)

fix(deps): update dependency zod to ^3.25.49 (#1829) #124

Workflow file for this run

name: Deploy Worker
on:
workflow_dispatch:
push:
branches:
- main
paths:
- apps/frontend/worker/**
jobs:
worker:
runs-on: ubuntu-latest
if: github.ref == 'refs/heads/main'
steps:
- uses: actions/checkout@v4
- name: Setup pnpm
uses: pnpm/action-setup@v4.1.0
- name: Setup node
uses: actions/setup-node@v4
with:
node-version: 24.1.0
cache: pnpm
- name: Install
run: pnpm install
- name: Build
run: pnpm build
- name: Deploy
run: pnpm -C apps/frontend/worker run deploy
env:
CLOUDFLARE_API_TOKEN: ${{ secrets.CF_API_TOKEN }}
# web:
# runs-on: ubuntu-latest
# if: github.ref == 'refs/heads/remix'
# steps:
# - uses: actions/checkout@v4
# - name: Setup pnpm
# uses: pnpm/action-setup@v4.0.0
# - name: Setup node
# uses: actions/setup-node@v4
# with:
# node-version: 24.x
# cache: pnpm
# - name: Install
# run: pnpm install
# - name: Build
# run: pnpm build:web
# env:
# SSR_ADAPTER: cloudflare
# - name: Deploy
# run: pnpm -C apps/frontend/web run deploy:cloudflare
# env:
# CLOUDFLARE_API_TOKEN: ${{ secrets.CF_API_TOKEN }}