Skip to content

Commit 0152529

Browse files
committed
chore: add comments for fix
1 parent 4848837 commit 0152529

13 files changed

Lines changed: 68 additions & 44 deletions

File tree

.github/workflows/web-client-deploy-development.yml

Lines changed: 23 additions & 22 deletions
Original file line numberDiff line numberDiff line change
@@ -11,27 +11,28 @@ jobs:
1111
steps:
1212
- uses: actions/checkout@v4
1313

14-
- uses: actions/setup-node@v4
15-
with:
16-
node-version: '20'
17-
cache: 'yarn'
14+
# TODO: 패키지 구조 변경 및 s3 배포에 따라 변경해야함
15+
# - uses: actions/setup-node@v4
16+
# with:
17+
# node-version: '20'
18+
# cache: 'yarn'
1819

19-
- name: build
20-
run: |
21-
rm ./apps/web/.env && mv ./apps/web/.env.dev ./apps/web/.env
22-
yarn set version 3.8.1
23-
yarn install --immutable --immutable-cache
24-
yarn web codegen
25-
yarn web build
20+
# - name: build
21+
# run: |
22+
# rm ./apps/web/.env && mv ./apps/web/.env.dev ./apps/web/.env
23+
# yarn set version 3.8.1
24+
# yarn install --immutable --immutable-cache
25+
# yarn web codegen
26+
# yarn web build
2627

27-
- name: scp
28-
uses: appleboy/scp-action@v0.1.7
29-
with:
30-
host: ${{ secrets.SSH_HOST }}
31-
username: ${{ secrets.SSH_USERNAME }}
32-
key: ${{ secrets.SSH_PEM_KEY }}
33-
port: ${{ secrets.SSH_PORT }}
34-
source: ./apps/web/build/*
35-
# TODO: 패키지 구조 변경에 따라 target 디렉토리도 변경해야함
36-
target: ~/dialga/apps/web-client/build
37-
strip_components: 3
28+
# - name: scp
29+
# uses: appleboy/scp-action@v0.1.7
30+
# with:
31+
# host: ${{ secrets.SSH_HOST }}
32+
# username: ${{ secrets.SSH_USERNAME }}
33+
# key: ${{ secrets.SSH_PEM_KEY }}
34+
# port: ${{ secrets.SSH_PORT }}
35+
# source: ./apps/web/build/*
36+
# # TODO: 패키지 구조 변경에 따라 target 디렉토리도 변경해야함
37+
# target: ~/dialga/apps/web-client/build
38+
# strip_components: 3

.github/workflows/web-client-deploy-production.yml

Lines changed: 23 additions & 22 deletions
Original file line numberDiff line numberDiff line change
@@ -11,27 +11,28 @@ jobs:
1111
steps:
1212
- uses: actions/checkout@v4
1313

14-
- uses: actions/setup-node@v4
15-
with:
16-
node-version: '20'
17-
cache: 'yarn'
14+
# TODO: 패키지 구조 변경 및 s3 배포에 따라 변경해야함
15+
# - uses: actions/setup-node@v4
16+
# with:
17+
# node-version: '20'
18+
# cache: 'yarn'
1819

19-
- name: build
20-
run: |
21-
rm ./apps/web/.env && mv ./apps/web/.env.prod ./apps/web/.env
22-
yarn set version 3.8.1
23-
yarn install --immutable --immutable-cache
24-
yarn web codegen
25-
yarn web build
20+
# - name: build
21+
# run: |
22+
# rm ./apps/web/.env && mv ./apps/web/.env.prod ./apps/web/.env
23+
# yarn set version 3.8.1
24+
# yarn install --immutable --immutable-cache
25+
# yarn web codegen
26+
# yarn web build
2627

27-
- name: scp
28-
uses: appleboy/scp-action@v0.1.7
29-
with:
30-
host: ${{ secrets.SSH_HOST }}
31-
username: ${{ secrets.SSH_USERNAME }}
32-
key: ${{ secrets.SSH_PEM_KEY }}
33-
port: ${{ secrets.SSH_PORT }}
34-
source: ./apps/web/build/*
35-
# TODO: 패키지 구조 변경에 따라 target 디렉토리도 변경해야함
36-
target: ~/dialga/apps/web-client/build
37-
strip_components: 3
28+
# - name: scp
29+
# uses: appleboy/scp-action@v0.1.7
30+
# with:
31+
# host: ${{ secrets.SSH_HOST }}
32+
# username: ${{ secrets.SSH_USERNAME }}
33+
# key: ${{ secrets.SSH_PEM_KEY }}
34+
# port: ${{ secrets.SSH_PORT }}
35+
# source: ./apps/web/build/*
36+
# # TODO: 패키지 구조 변경에 따라 target 디렉토리도 변경해야함
37+
# target: ~/dialga/apps/web-client/build
38+
# strip_components: 3

websites/poolc.org/src/components/activity/ActivityDetail/ActivityDetail.jsx

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,6 @@
11
import { useState } from 'react';
2+
// FIXME: eslint issue 수정 필요. 터미널에서는 에러가 나지 않으나, 에디터에서만 에러가 나고 있음
3+
// eslint-disable-next-line import/no-extraneous-dependencies
24
import { Viewer } from '@dialga/react-editor';
35
import MemberCard from '../../members/MemberCard/MemberCard';
46
import SessionContainer from '../../../containers/activity/SessionContainer/SessionContainer';

websites/poolc.org/src/components/activity/ActivityForm/ActivityAttendance.jsx

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,6 @@
11
import { useRef, useState } from 'react';
2+
// FIXME: eslint issue 수정 필요. 터미널에서는 에러가 나지 않으나, 에디터에서만 에러가 나고 있음
3+
// eslint-disable-next-line import/no-extraneous-dependencies
24
import { Editor } from '@dialga/react-editor';
35
import { DeleteFilled } from '@ant-design/icons';
46
import { Checkbox } from 'antd';

websites/poolc.org/src/components/activity/ActivityForm/ActivityForm.jsx

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,6 @@
11
import { memo, useRef, useState } from 'react';
2+
// FIXME: eslint issue 수정 필요. 터미널에서는 에러가 나지 않으나, 에디터에서만 에러가 나고 있음
3+
// eslint-disable-next-line import/no-extraneous-dependencies
24
import { Editor } from '@dialga/react-editor';
35
import { DeleteFilled } from '@ant-design/icons';
46
import { Radio } from 'antd';

websites/poolc.org/src/components/activity/Session/Session.jsx

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
// FIXME: eslint issue 수정 필요. 터미널에서는 에러가 나지 않으나, 에디터에서만 에러가 나고 있음
2+
// eslint-disable-next-line import/no-extraneous-dependencies
13
import { Viewer } from '@dialga/react-editor';
24
import { MENU } from '../../../constants/menus';
35
import ActionButton from '../../common/Buttons/ActionButton';

websites/poolc.org/src/components/admin/AdminInfo/AdminInfo.jsx

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
/* eslint-disable react/no-unescaped-entities */
22
import { useRef, useState } from 'react';
3+
// FIXME: eslint issue 수정 필요. 터미널에서는 에러가 나지 않으나, 에디터에서만 에러가 나고 있음
4+
// eslint-disable-next-line import/no-extraneous-dependencies
35
import { Editor } from '@dialga/react-editor';
46
import useInput from '../../../hooks/useInput';
57
import { notEmptyValidation } from '../../../lib/utils/validation';

websites/poolc.org/src/components/admin/AdminProjectForm/AdminProjectForm.jsx

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,6 @@
11
import { useRef, useState } from 'react';
2+
// FIXME: eslint issue 수정 필요. 터미널에서는 에러가 나지 않으나, 에디터에서만 에러가 나고 있음
3+
// eslint-disable-next-line import/no-extraneous-dependencies
24
import { Editor } from '@dialga/react-editor';
35
import { DeleteOutlined } from '@ant-design/icons';
46
import useInput from '../../../hooks/useInput';

websites/poolc.org/src/components/board/BoardJobWriteSection.tsx

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,6 @@
11
import { useEffect, useRef } from 'react';
2+
// FIXME: eslint issue 수정 필요. 터미널에서는 에러가 나지 않으나, 에디터에서만 에러가 나고 있음
3+
// eslint-disable-next-line import/no-extraneous-dependencies
24
import { Editor } from '@dialga/react-editor';
35
import { useForm, zodResolver } from '@mantine/form';
46
import { z } from 'zod';

websites/poolc.org/src/components/board/BoardNormalWriteSection.tsx

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,6 @@
11
import { useEffect, useRef } from 'react';
2+
// FIXME: eslint issue 수정 필요. 터미널에서는 에러가 나지 않으나, 에디터에서만 에러가 나고 있음
3+
// eslint-disable-next-line import/no-extraneous-dependencies
24
import { Editor } from '@dialga/react-editor';
35
import { useForm, zodResolver } from '@mantine/form';
46
import { z } from 'zod';

0 commit comments

Comments
 (0)