Skip to content

[온보딩페이지] STEP01 이름 입력 컴포넌트 뷰 구현 & 나머지 단계 타이틀만 구현 #6

[온보딩페이지] STEP01 이름 입력 컴포넌트 뷰 구현 & 나머지 단계 타이틀만 구현

[온보딩페이지] STEP01 이름 입력 컴포넌트 뷰 구현 & 나머지 단계 타이틀만 구현 #6

Workflow file for this run

name: pr-preview
on:
# main, develop 브랜치를 향해 PR 올리면 임시 배포되도록 설정
pull_request:
types:
- opened
- reopened
- synchronize
branches: [main, develop]
paths: 'sweet-client/*'
# 동시성 설정
concurrency: preview-${{ github.ref }}
# 권한 설정
permissions:
contents: write
issues: write
pull-requests: write
id-token: write
pages: write
deployments: write
jobs:
deploy-preview:
runs-on: ubuntu-latest
steps:
# workflow에 속한 레포지토리에 접근할 수 있도록 설정
- name: Checkout
uses: actions/checkout@v4
# 종속성 설치 및 프로젝트 빌드
- name: Install and Build
run: yarn install && yarn build
# PR 프리뷰 배포
- name: Deploy PR Preview
uses: rossjrw/[email protected]
with:
token: ${{ secrets.TOKEN}}
source-dir: ./dist/
preview-branch: gh-pages
umbrella-dir: pr-preview
action: auto