Skip to content

Latest commit

 

History

History
54 lines (31 loc) · 1.02 KB

travis-ci.md

File metadata and controls

54 lines (31 loc) · 1.02 KB

Travis CI

Travis-CI는 루비로 작성된 오픈 소스 기반의 CI(Continuous Integration)

Description

  • 분산 CI 호스팅 서비스를 제공
  • GitHub 아이디의 프로젝트를 연결하여 테스트, 빌드 및 배포 가능

Installation

  1. https://travis-ci.org/auth 에 접속

  2. Sign in with GitHub 버튼 선택하고, github 아이디로 로그인.

    Sign in with Github

  3. Account Repositories 를 통해서 공개 저장소 확인

    repositories

Usage

각 저장소 별로 .travis.yml 파일 생성으로 시작.

  1. .travis.yml 파일 생성하기

    language: node_js
    node_js:
    - "node"
    
    cache: yarn
    
    sudo: true
    
    before_script:
    - npm install -g yarn
    
    script:
    - npm run test

References

Contributing

Credits

License

This project is licensed under the MIT License.