ci: add GitHub Actions workflow for frontend deployment

This commit is contained in:
Siarhei Bareika 2025-03-15 17:10:40 +01:00
parent a940eb13fd
commit 4097a8b199
No known key found for this signature in database
GPG Key ID: 2D2768C44911298A

24
.github/workflows/cd-web.yaml vendored Normal file
View File

@ -0,0 +1,24 @@
name: Deploy Frontend
on:
push:
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Install pnpm
uses: pnpm/action-setup@v4
- name: Use Node.js
uses: actions/setup-node@v4
with:
cache: 'pnpm'
- name: Install dependencies
run: pnpm install
- name: Build
run: pnpm run build