Travis-CI는 루비로 작성된 오픈 소스 기반의 CI(Continuous Integration)
- 분산 CI 호스팅 서비스를 제공
- GitHub 아이디의 프로젝트를 연결하여 테스트, 빌드 및 배포 가능
-
https://travis-ci.org/auth
에 접속 -
Sign in with GitHub
버튼 선택하고, github 아이디로 로그인. -
Account Repositories 를 통해서 공개 저장소 확인
각 저장소 별로 .travis.yml
파일 생성으로 시작.
-
.travis.yml
파일 생성하기language: node_js node_js: - "node" cache: yarn sudo: true before_script: - npm install -g yarn script: - npm run test
This project is licensed under the MIT License.