Skip to content

Lifelong learning blog #22

Lifelong learning blog

Lifelong learning blog #22

Workflow file for this run

name: Test deploy the webapp
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
workflow_dispatch:
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: oven-sh/setup-bun@v2
- run: bun install
- name: Run check
run: bun run check
- name: Build for Vercel
run: bun run deploy
env:
VERCEL: "true"