From 3276c0711f0f781465adadb693b2314836456539 Mon Sep 17 00:00:00 2001 From: rlaisqls Date: Sun, 2 Jun 2024 15:20:51 +0900 Subject: [PATCH] =?UTF-8?q?PR=20=EB=AF=B8=EB=A6=AC=EB=B3=B4=EA=B8=B0=20?= =?UTF-8?q?=ED=8E=98=EC=9D=B4=EC=A7=80=20Action=20=EC=B6=94=EA=B0=80?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .github/workflows/preview.yml | 63 +++++++++++++++++++++++++++++++++++ 1 file changed, 63 insertions(+) create mode 100644 .github/workflows/preview.yml diff --git a/.github/workflows/preview.yml b/.github/workflows/preview.yml new file mode 100644 index 0000000..f288e73 --- /dev/null +++ b/.github/workflows/preview.yml @@ -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/pr-preview-action@v1.4.3 + with: + token: ${{ secrets.GITHUB_TOKEN }} + preview-branch: main + source-dir: . + umbrella-dir: pr-preview + action: auto- \ No newline at end of file