Skip to content

update: config frontend #2

update: config frontend

update: config frontend #2

name: Build frontend
on:
push:
paths:
- frontend/**
jobs:
build:
name: Build frontend
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Set up Node.js
uses: actions/setup-node@v4
with:
node-version: '20.18.1'
- name: Install dependencies
run: |
cd frontend
pnpm install
- name: Build frontend
run: |
cd frontend
pnpm build