Skip to content

Simplify authorize page redirecting conditions (#194) #114

Simplify authorize page redirecting conditions (#194)

Simplify authorize page redirecting conditions (#194) #114

Workflow file for this run

name: server-deploy CI
on:
workflow_dispatch: {}
push:
branches:
- main
jobs:
deploy:
runs-on: ubuntu-latest
name: Deploy
steps:
- uses: actions/checkout@v4
- name: Set up Node.js
uses: actions/setup-node@v3
with:
node-version: '18'
- name: Install dependencies
run: npm ci
- name: Build package
run: npm run build
- name: Deploy
uses: cloudflare/wrangler-action@v3
with:
apiToken: ${{ secrets.CLOUDFLARE_API_TOKEN }}
accountId: ${{ secrets.CLOUDFLARE_ACCOUNT_ID }}
workingDirectory: 'server'
command: deploy --minify src/index.tsx