[#269, #277, #302] ssr 제거 및 private 페이지 검증 수정 #162
Workflow file for this run
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: SMS-CI | |
on: | |
pull_request: | |
paths: | |
- '.github/workflows/**' | |
- 'packages/shared/**' | |
branches: | |
- 'develop' | |
- 'master' | |
jobs: | |
SMS-shared-CI: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: pnpm/action-setup@v2 | |
with: | |
version: 9.1.2 | |
- run: pnpm i --frozen-lockfile | |
- run: pnpm build:shared | |
- name: Success notification to discord | |
uses: sarisia/actions-status-discord@v1.11.0 | |
if: ${{ success() }} | |
with: | |
webhook: ${{ secrets.WEBHOOK }} | |
title: 'SMS shared CI successfully' | |
description: 'shared CI success' | |
content: 'success!!!' | |
username: 'SMS shared CI' | |
url: 'https://github.com/GSM-MSG/SMS-FrontEnd' | |
color: 4CAF50 | |
avatar_url: ${{ secrets.AVATAR_URL }} | |
- name: Failure notification to discord | |
uses: sarisia/actions-status-discord@v1.11.0 | |
if: ${{ failure() }} | |
with: | |
webhook: ${{ secrets.WEBHOOK }} | |
title: 'SMS shared CI failed' | |
description: 'shared CI failed' | |
content: 'ㅆㅂ...' | |
username: 'SMS shared CI' | |
url: 'https://github.com/GSM-MSG/SMS-FrontEnd' | |
color: e74c3c | |
avatar_url: ${{ secrets.AVATAR_URL }} |