Skip to content

improve(logs): roll level into the log line a instead of its own label #28

improve(logs): roll level into the log line a instead of its own label

improve(logs): roll level into the log line a instead of its own label #28

Workflow file for this run

name: Deploy
on:
push:
branches:
- main
jobs:
test:
name: Test
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: 18
cache: "yarn"
- run: yarn
- run: yarn test
deploy:
name: Deploy
needs:
- test
runs-on: ubuntu-latest
environment: Production
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: 18
cache: "yarn"
- run: yarn
- run: yarn wrangler deploy
env:
CLOUDFLARE_API_TOKEN: ${{ secrets.CLOUDFLARE_API_TOKEN }}