Skip to content

add BASE_URL configuration for nuxt, and healthcheck #57

add BASE_URL configuration for nuxt, and healthcheck

add BASE_URL configuration for nuxt, and healthcheck #57

Workflow file for this run

name: CI
on:
push:
branches:
- main
pull_request:
workflow_dispatch:
jobs:
build:
name: Typecheck and Build Nuxt App
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: pnpm/action-setup@v4
- uses: actions/setup-node@v4
with:
node-version: 20
cache: "pnpm"
- name: Install dependencies
run: pnpm install
- name: Typecheck
run: pnpm nuxt typecheck
- name: Build
run: pnpm nuxt build