Skip to content

✨ Enhanced project import and export support #1

✨ Enhanced project import and export support

✨ Enhanced project import and export support #1

name: Site Deploy (Preview CI)
on:
pull_request:
jobs:
preview-ci:
runs-on: ubuntu-latest
concurrency:
group: pull-request-preview-${{ github.event.number }}
cancel-in-progress: true
steps:
- uses: actions/checkout@v4
with:
ref: ${{ github.event.pull_request.head.sha }}
fetch-depth: 0
- name: Setup Node Environment
uses: ./.github/actions/setup-node
- name: Build Website
run: pnpm app build
- name: Export Context
run: |
echo "PR_NUMBER=${{ github.event.number }}" >> ./action.env
- name: Upload Artifact
uses: actions/upload-artifact@v4
with:
name: website-preview
path: |
./packages/app/dist
./action.env
retention-days: 1