From 8ec4ad1d9ca3427ddc243aa0d90e83e88719012b Mon Sep 17 00:00:00 2001 From: Mauricio Siu Date: Fri, 28 Nov 2025 02:03:42 -0600 Subject: [PATCH] Refactor GitHub workflow: uncomment build preview steps for improved deployment process and clarity. --- .github/workflows/build-preview.yml | 58 ++++++++++++++--------------- 1 file changed, 29 insertions(+), 29 deletions(-) diff --git a/.github/workflows/build-preview.yml b/.github/workflows/build-preview.yml index 18f6b804..3c56b3f7 100644 --- a/.github/workflows/build-preview.yml +++ b/.github/workflows/build-preview.yml @@ -1,35 +1,35 @@ -# name: Build Preview Deployment +name: Build Preview Deployment -# concurrency: -# group: ${{ github.workflow }}-${{ github.event.number || github.sha }} -# cancel-in-progress: true +concurrency: + group: ${{ github.workflow }}-${{ github.event.number || github.sha }} + cancel-in-progress: true -# on: -# pull_request: -# types: [opened, synchronize] +on: + pull_request: + types: [opened, synchronize] -# jobs: -# build-preview: -# runs-on: ubuntu-latest -# steps: -# - uses: actions/checkout@v4 -# - uses: pnpm/action-setup@v4 -# with: -# version: 8 -# - uses: actions/setup-node@v4 -# with: -# node-version: 20 +jobs: + build-preview: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v4 + - uses: pnpm/action-setup@v4 + with: + version: 8 + - uses: actions/setup-node@v4 + with: + node-version: 20 -# - name: Install dependencies -# working-directory: app -# run: pnpm install + - name: Install dependencies + working-directory: app + run: pnpm install -# - name: Build -# working-directory: app -# run: pnpm build + - name: Build + working-directory: app + run: pnpm build -# - name: Upload build artifact -# uses: actions/upload-artifact@v4 -# with: -# name: preview-build -# path: app/dist \ No newline at end of file + - name: Upload build artifact + uses: actions/upload-artifact@v4 + with: + name: preview-build + path: app/dist \ No newline at end of file