Skip to content

Commit

Permalink
PR 미리보기 페이지 Action 추가
Browse files Browse the repository at this point in the history
  • Loading branch information
rlaisqls committed Jun 2, 2024
1 parent 9837075 commit c49bbc5
Showing 1 changed file with 61 additions and 0 deletions.
61 changes: 61 additions & 0 deletions .github/workflows/preview.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,61 @@
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

- 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-

0 comments on commit c49bbc5

Please sign in to comment.