[GWL-41] TNCombineCococa 구현 #18
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: BackEnd-CI | |
on: | |
push: | |
branches: 'feature/BE/*' | |
pull_request: | |
branches: 'develop' | |
types: [labeled, opened, synchronize, reopened] | |
jobs: | |
test: | |
if: contains(github.event.pull_request.labels.*.name, '💻백엔드') | |
runs-on: ubuntu-latest | |
steps: | |
- name: 코드 체크아웃 | |
uses: actions/checkout@v2 | |
- name: node 세팅 | |
uses: actions/setup-node@v1 | |
with: | |
node-version: '18' | |
- name: 의존성 설치 | |
run: npm ci | |
working-directory: ./BackEnd | |
- name: 테스트 진행 | |
run: npm test | |
working-directory: ./BackEnd |