-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Browse files
Browse the repository at this point in the history
* feat: PR 올릴 때, Github Action에서 build 트리거 * fix: 빌드가 안되는 부분 업데이트 * feat: 자동 PR 등록 * fix: 노드 버전 업데이트 * fix: 절대 경로로 변경 * fix: add param
- Loading branch information
1 parent
40fc3a9
commit be7f8dd
Showing
54 changed files
with
229 additions
and
171 deletions.
There are no files selected for viewing
Validating CODEOWNERS rules …
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
- @halfmoon-mind @ChoiSangwon @JooHui-void @SujinKim1127 @jwo0o0 @chan0310 |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
name: Build on PR | ||
|
||
on: | ||
pull_request: | ||
branches: [main] | ||
|
||
jobs: | ||
build: | ||
runs-on: ubuntu-latest | ||
|
||
steps: | ||
- uses: actions/checkout@v2 | ||
|
||
- name: Use Node.js | ||
uses: actions/setup-node@v1 | ||
with: | ||
node-version: '16' | ||
|
||
- name: Install dependencies | ||
run: yarn install | ||
|
||
- name: Build | ||
run: yarn build |
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
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
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
47 changes: 28 additions & 19 deletions
47
src/components/Home/NoticeFunSystem/NoticeFunSystem.stories.tsx
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,30 +1,39 @@ | ||
import React from 'react'; | ||
import { Story } from '@storybook/react'; | ||
import NoticeFunSystem, {NoticeFunSystemProps} from './NoticeFunSystem'; | ||
import NoticeFunSystem, { NoticeFunSystemProps } from './NoticeFunSystem'; | ||
|
||
export default { | ||
title: 'Home/NoticeFunSystem', | ||
component: NoticeFunSystem, | ||
}; | ||
|
||
const summaries = [ | ||
{ | ||
textContent: '2023-1학기(여름계절제수업 포함) 성적처리~~~~~~~~~~~~~~~~~~~~~~~', | ||
date: '5/11', | ||
}, | ||
{ | ||
textContent: '두 번째 공지 내용', | ||
date: '5/12', | ||
}, | ||
{ | ||
textContent: '세 번째 공지 내용', | ||
date: '5/13', | ||
}, | ||
]; | ||
|
||
const Template: Story<NoticeFunSystemProps> = (args) => <NoticeFunSystem {...args} />; | ||
const Template: Story<NoticeFunSystemProps> = (args) => ( | ||
<NoticeFunSystem {...args} /> | ||
); | ||
export const Default = Template.bind({}); | ||
Default.args = { | ||
title: '공지사항 혹은 펀시스템', | ||
summaries: summaries, | ||
}; | ||
summaries: [ | ||
{ | ||
id: 1, | ||
title: '2023-1학기(여름계절제수업 포함) 성적처리~~~~~~~~~~~~~~~~~~~~~~~', | ||
category: 'Notice', | ||
createdAt: '5/11', | ||
views: 10, | ||
}, | ||
{ | ||
id: 2, | ||
title: '두 번째 공지 내용', | ||
category: 'Notice', | ||
createdAt: '5/12', | ||
views: 5, | ||
}, | ||
{ | ||
id: 3, | ||
title: '세 번째 공지 내용', | ||
category: 'Notice', | ||
createdAt: '5/13', | ||
views: 8, | ||
}, | ||
], | ||
}; |
46 changes: 34 additions & 12 deletions
46
src/components/community/community_writing/ImageInputBox/IconBox/IconBox.tsx
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
45 changes: 22 additions & 23 deletions
45
src/components/community/community_writing/ImageInputBox/ImageInputBox.tsx
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
Oops, something went wrong.