Skip to content

[feat] signup 페이지 퍼블리싱 #27

[feat] signup 페이지 퍼블리싱

[feat] signup 페이지 퍼블리싱 #27

Workflow file for this run

name: CI
on:
pull_request:
branches: [main, develop]
push:
branches: [main, develop]
permissions:
contents: read
concurrency:
group: ci-${{ github.ref }}
cancel-in-progress: true
jobs:
lint-typecheck-build:
name: Lint / Typecheck / Build
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup pnpm
uses: pnpm/action-setup@v4
with:
version: 9
- name: Setup Node
uses: actions/setup-node@v4
with:
node-version: 20
cache: pnpm
- name: Install dependencies
run: pnpm install --frozen-lockfile
- name: Lint
run: pnpm lint
- name: Typecheck
run: pnpm typecheck
- name: Build
run: pnpm build
- name: Success Discord Notification
uses: sarisia/actions-status-discord@v1.15.5
if: success()
with:
webhook: ${{ secrets.DISCORD_WEBHOOK_URL }}
title: '✅ CI 성공'
description: '${{ github.event.pull_request.title }}'
url: ${{ github.event.pull_request.html_url }}
username: WAY-front bot
color: 0x4CAF50
- name: Failure Discord Notification
uses: sarisia/actions-status-discord@v1.15.5
if: failure()
with:
webhook: ${{ secrets.DISCORD_WEBHOOK_URL }}
title: '❌ CI 실패'
description: '${{ github.event.pull_request.title }}'
url: ${{ github.event.pull_request.html_url }}
username: WAY-front bot
color: 0xF44336