diff --git a/.github/workflows/dev_deploy.yml b/.github/workflows/dev_deploy.yml index d3ca302..8cca059 100644 --- a/.github/workflows/dev_deploy.yml +++ b/.github/workflows/dev_deploy.yml @@ -8,13 +8,13 @@ on: jobs: build: # pull 요청이 dev에 merge 되었을 때 아래 steps를 실행 - if: github.event.pull_request.merged == true && github.event.pull_request.base.ref == 'dev' + if: github.event.pull_request.merged == true && github.event.pull_request.base.ref == 'release' runs-on: ubuntu-latest # 우분투 최신 버전으로 실행 strategy: matrix: - node-version: ['18.x'] # 노드 버전 지정! 여러 개도 가능! ['18.x', '14.x'] 요렇게 + node-version: ['18', '16', '14'] # 노드 버전 지정! 여러 개도 가능! ['18.x', '14.x'] 요렇게 steps: # build 할 코드를 가져옴 (코드 checkout - github에서 제공해주는 checkout@v3 사용)