Skip to content

design: 로그인 버튼 아래 이용 동의 문구 추가 #330

design: 로그인 버튼 아래 이용 동의 문구 추가

design: 로그인 버튼 아래 이용 동의 문구 추가 #330

Workflow file for this run

name: PR Built Test
on:
pull_request:
types: [opened, synchronize, edited, reopened, ready_for_review]
jobs:
Build-Test:
runs-on: ubuntu-latest
steps:
- uses: pnpm/action-setup@v4
with:
version: 8
- name: Checkout repository
uses: actions/checkout@v3
with:
fetch-depth: 0
- name: Cache dependencies
id: cache
uses: actions/cache@v3
with:
path: '**/node_modules'
key: ${{ runner.os }}-node-${{ hashFiles('**/pnpm-lock.yaml') }}-build
restore-keys: |
${{ runner.os }}-node-
- name: Install dependencies
if: steps.cache.outputs.cache-hit != 'true'
run: pnpm install
- name: Generate CSS
run: pnpm panda cssgen
- name: Build project
run: pnpm build