Skip to content

Latest commit

 

History

History
28 lines (24 loc) · 593 Bytes

codeship-ci.md

File metadata and controls

28 lines (24 loc) · 593 Bytes

Codeship CI Configuration

Overview

Pick "I want to create my own custom commands" on the Project Settings, Test tab.

Setup Commands

#!/bin/bash
rvm use 2.5.3
gem update --system
gem install bundler
bundle config build.nokogiri --use-system-libraries
bundle config build.json --use-system-libraries
bundle install
chromedriver-update
nvm install stable && nvm alias default stable
npm install npm@latest -g
npm install --global yarn
yarn install
export RAILS_ENV=test
bundle exec rake db:schema:load

Test Pipeline

COVERALLS_REPO_TOKEN=YynC bundle exec rake