diff --git a/.github/workflows/deploy_preview.yaml b/.github/workflows/deploy_preview.yaml index 8378e9cf..578e1b8b 100644 --- a/.github/workflows/deploy_preview.yaml +++ b/.github/workflows/deploy_preview.yaml @@ -6,6 +6,9 @@ on: push: branches: - "dev" + paths: + - "common/**" + - "mainPage/**" jobs: deploy-preview: runs-on: ubuntu-latest diff --git a/.github/workflows/deploy_production.yaml b/.github/workflows/deploy_production.yaml index de1840b8..7df4129f 100644 --- a/.github/workflows/deploy_production.yaml +++ b/.github/workflows/deploy_production.yaml @@ -6,6 +6,9 @@ on: push: branches: - "main" + paths: + - "common/**" + - "mainPage/**" jobs: deploy-production: runs-on: ubuntu-latest diff --git a/index.html b/index.html index 83df13f1..947bf910 100644 --- a/index.html +++ b/index.html @@ -9,6 +9,6 @@
- + diff --git a/src/App.jsx b/src/App.jsx deleted file mode 100644 index 27b936e1..00000000 --- a/src/App.jsx +++ /dev/null @@ -1,38 +0,0 @@ -import { useEffect } from "react"; -import IntroSection from "./introSection"; -import Header from "./header"; -import SimpleInformation from "./simpleInformation"; -import DetailInformation from "./detailInformation"; -import CommentSection from "./comment"; -import FcfsSection from "./fcfs"; -import QnA from "./qna"; -import Footer from "./footer"; -import Modal from "./modal/modal.jsx"; -import InteractionPage from "./interactions"; -import { initLoginState } from "./auth/store.js"; - -function App() { - useEffect(() => { - window.scrollTo(0, 0); - history.scrollRestoration = "manual"; - initLoginState(); - }, []); - - return ( - <> - -
- - - - - - -