Skip to content

Change verification/mfa/reset code to be 6 digits (#193) #113

Change verification/mfa/reset code to be 6 digits (#193)

Change verification/mfa/reset code to be 6 digits (#193) #113

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