Skip to content

[Snyk] Upgrade @hono/zod-validator from 0.2.2 to 0.3.0 #31

[Snyk] Upgrade @hono/zod-validator from 0.2.2 to 0.3.0

[Snyk] Upgrade @hono/zod-validator from 0.2.2 to 0.3.0 #31

Workflow file for this run

# Compile, bundle, and upload application bundles
# to a cloud storage on each pull request to "main".
# https://help.github.com/actions
name: PR
on:
pull_request:
branches: [main]
env:
CI: true
VERSION: ${{ github.event.pull_request.number }}
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Setup Bun
uses: oven-sh/setup-bun@v2
- name: Install dependencies
run: bun install
# Test
- run: bun run test
# Compile
- run: bun run build
deploy:
runs-on: ubuntu-latest
needs: [build]
timeout-minutes: 5
steps:
- uses: actions/checkout@v2
- name: Setup Bun
uses: oven-sh/setup-bun@v2
- name: Install dependencies
run: bun install
# - run: npm run deploy