Skip to content

[#345] 인증제 입력 페이지 추가 #187

[#345] 인증제 입력 페이지 추가

[#345] 인증제 입력 페이지 추가 #187

Workflow file for this run

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.4.0
- run: pnpm i --frozen-lockfile
- run: pnpm build:shared
- name: Success notification to discord
uses: sarisia/[email protected]
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/[email protected]
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 }}