[Snyk] Upgrade @hono/zod-validator from 0.2.2 to 0.3.0 #31
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# 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 |