ABOUT ME

-

Today
-
Yesterday
-
Total
-
  • 1. NestJs & Git Actions CI/CD - [ git actions 추가 ]
    공부하기/node.js 2023. 1. 31. 07:49

    nest-cli를 통해서 프로젝트를 생성했다고 가정합니다.
    첫번째 계획은 일단 git -actions를 연결하는것입니다.

    일단 테스트 케이스를 통과하면 레파지토리에 push 되도록 하는 부분을 제외합니다.

    git-actions를 좀 더 자세하게 알기 위해서 공식문서를 참조하여 빠른 시작을 참고했습니다.

     

    시작하기

    • 프로젝트의 / 경로에 .github/workflows 디렉토리를 생성합니다.
    • .github/workflows 디렉토리 내 github-actions.yml 파일을 생성합니다.
    • 아래 코드를 github-actions.yml 파일에 그대로 복사 붙여넣기 합니다.
      • name: GitHub Actions Demo
        run-name: ${{ github.actor }} is testing out GitHub Actions 🚀
        on: [push]
        jobs:
          Explore-GitHub-Actions:
            runs-on: ubuntu-latest
            steps:
              - run: echo "🎉 The job was automatically triggered by a ${{ github.event_name }} event."
              - run: echo "🐧 This job is now running on a ${{ runner.os }} server hosted by GitHub!"
              - run: echo "🔎 The name of your branch is ${{ github.ref }} and your repository is ${{ github.repository }}."
              - name: Check out repository code
                uses: actions/checkout@v3
              - run: echo "💡 The ${{ github.repository }} repository has been cloned to the runner."
              - run: echo "🖥️ The workflow is now ready to test your code on the runner."
              - name: List files in the repository
                run: |
                  ls ${{ github.workspace }}
              - run: echo "🍏 This job's status is ${{ job.status }}."
    • git commit 후 push를 진행합니다.
    • 그 이후 해당 레파지토리의 Actions 탭을 클릭합니다.

    • 이 후 결과를 확인합니다.

     

    git-actions가 정상적으로 실행된 것을 확인할 수 있습니다!

Designed by Tistory.