[시작하기] 인터넷과 프로토콜 문서 추가 #15
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
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 |