From 4097a8b1990fc3925742e8e77876c8413ef30f93 Mon Sep 17 00:00:00 2001 From: Siarhei Bareika Date: Sat, 15 Mar 2025 17:10:40 +0100 Subject: [PATCH] ci: add GitHub Actions workflow for frontend deployment --- .github/workflows/cd-web.yaml | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) create mode 100644 .github/workflows/cd-web.yaml diff --git a/.github/workflows/cd-web.yaml b/.github/workflows/cd-web.yaml new file mode 100644 index 00000000..14982e49 --- /dev/null +++ b/.github/workflows/cd-web.yaml @@ -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