diff --git a/.github/workflows/workflow.yml b/.github/workflows/workflow.yml new file mode 100644 index 0000000..593850c --- /dev/null +++ b/.github/workflows/workflow.yml @@ -0,0 +1,19 @@ +# 1 워크플로의 이름 지정 +name: Production-CI/CD +# 2 워크플로가 시작될 조건 지정 +on: + push: + branches: [main] +jobs: + build: + runs-on: ubuntu-latest # 3 실행 환경 지정 + #4 실행스텝지정 + steps: + - name: Checkout source code. + uses: actions/checkout@v2 + - name: Check Node v + run: node -v + - name: Install Dependencies + run: yarn install --frozen-lockfile + - name: Build + run: yarn build diff --git a/README.md b/README.md deleted file mode 100644 index 8241a3a..0000000 --- a/README.md +++ /dev/null @@ -1,2 +0,0 @@ -# mara-web -DDD 10기 web1 팀 web front diff --git a/src/pages/index.tsx b/src/pages/index.tsx index 8557c56..7079680 100644 --- a/src/pages/index.tsx +++ b/src/pages/index.tsx @@ -7,7 +7,9 @@ export default function Home() {
-
+
+ next js +
); }