-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
63 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,63 @@ | ||
name: PR 미리보기 페이지 생성 | ||
on: | ||
pull_request: | ||
types: | ||
- opened | ||
- synchronize | ||
|
||
permissions: | ||
contents: read | ||
pages: write | ||
deployments: write | ||
id-token: write | ||
pull-requests: write | ||
|
||
jobs: | ||
build: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Checkout your repository using git | ||
uses: actions/checkout@v4 | ||
|
||
- name: Setup PNPM | ||
uses: pnpm/action-setup@v3 | ||
with: | ||
version: 'latest' | ||
|
||
- name: Setup Node | ||
uses: actions/setup-node@v4 | ||
with: | ||
node-version: 18 | ||
cache: pnpm | ||
cache-dependency-path: "pnpm-lock.yaml" | ||
|
||
- name: Install | ||
shell: bash | ||
run: pnpm install | ||
|
||
- name: Install playwright | ||
shell: bash | ||
run: npx playwright-core install --with-deps chromium | ||
|
||
- name: Build | ||
shell: bash | ||
run: pnpm run build | ||
|
||
- name: Upload Pages Artifact | ||
uses: actions/upload-pages-artifact@v3 | ||
with: | ||
path: "./dist/" | ||
|
||
deploy-preview: | ||
needs: build | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v3 | ||
- name: Deploy PR Preview | ||
uses: rossjrw/[email protected] | ||
with: | ||
token: ${{ secrets.GITHUB_TOKEN }} | ||
preview-branch: main | ||
source-dir: . | ||
umbrella-dir: pr-preview | ||
action: auto- |