Files
templates/.github/workflows/build-preview.yml
Mauricio Siu 899a91a254 chore: refactor build preview workflow for improved clarity and efficiency
- Renamed job from "build-and-deploy" to "build-preview" for better clarity.
- Added concurrency settings to manage workflow runs effectively.
- Streamlined steps by removing unnecessary commands and comments.
- Updated pnpm action to the latest version and ensured proper Node.js versioning.
2025-03-16 12:07:43 -06:00

44 lines
1.1 KiB
YAML

name: Build Preview Deployment
concurrency:
group: ${{ github.workflow }}-${{ github.event.number || github.sha }}
cancel-in-progress: true
on:
pull_request:
types: [opened, synchronize]
jobs:
build-preview:
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
working-directory: app
run: pnpm install
- name: Build
working-directory: app
run: pnpm build
# - name: Deploy to Cloudflare Pages
# uses: AdrianGonz97/refined-cf-pages-action@v1
# with:
# apiToken: ${{ secrets.CLOUDFLARE_API_TOKEN }}
# accountId: ${{ secrets.CLOUDFLARE_ACCOUNT_ID }}
# githubToken: ${{ secrets.GITHUB_TOKEN }}
# projectName: ${{ secrets.CLOUDFLARE_PROJECT_NAME }}
# deploymentName: Preview
# directory: app/dist
- name: Upload build artifact
uses: actions/upload-artifact@v4
with:
name: preview-build
path: app/dist