Skip to content

fix: divide by zero issue (#84) #77

fix: divide by zero issue (#84)

fix: divide by zero issue (#84) #77

Workflow file for this run

name: Deploy
on:
push:
branches:
- main
env:
node_version: 18
jobs:
Deploy:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/setup-node@v2
with:
cache: yarn
node-version: ${{ env.node_version }}
- run: yarn install --frozen-lockfile
- run: yarn run build
- run: yarn run deploy
env:
CLOUDFLARE_TOKEN: ${{ secrets.CLOUDFLARE_TOKEN }}
CLOUDFLARE_ACCOUNTID: ${{ secrets.CLOUDFLARE_ACCOUNTID }}
CLOUDFLARE_ZONEID: ${{ secrets.CLOUDFLARE_ZONEID }}