Commit 0bcfd77

mo <mo.khan@gmail.com>
2018-04-07 18:57:43
run linter from cibuild.
1 parent 0aa428a
bin/cibuild
@@ -31,7 +31,10 @@ test -d "/usr/share/rbenv/shims" && {
 }
 export PATH="$RACK_ROOT/bin:$PATH"
 
-# run tests
 echo "Running tests …"
 date "+%H:%M:%S"
 bin/test
+
+echo "Running linters …"
+date "+%H:%M:%S"
+bin/lint
bin/lint
@@ -1,4 +1,3 @@
 #!/bin/sh
 
-bin/bootstrap
 bin/rake lint:all
config/environments/development.rb
@@ -1,7 +1,8 @@
 # frozen_string_literal: true
 
 Rails.application.configure do
-  # Verifies that versions and hashed value of the package contents in the project's package.json
+  # Verifies that versions and hashed value of the package contents in the
+  # project's package.json
   config.webpacker.check_yarn_integrity = true
 
   # Settings specified here will take precedence over those in
config/environments/production.rb
@@ -1,7 +1,8 @@
 # frozen_string_literal: true
 
 Rails.application.configure do
-  # Verifies that versions and hashed value of the package contents in the project's package.json
+  # Verifies that versions and hashed value of the package contents in the
+  # project's package.json
   config.webpacker.check_yarn_integrity = false
 
   # Settings specified here will take precedence over those in
.gitlab-ci.yml
@@ -6,10 +6,6 @@ before_script:
   - locale-gen
   - export LC_ALL=en_US.UTF-8
 
-rspec:
+cibuild:
   script:
     - bin/cibuild
-
-lint:
-  script:
-    - bin/lint
.travis.yml
@@ -2,7 +2,6 @@ sudo: false
 language: ruby
 cache: bundler
 rvm:
-  - 2.5.0
+  - 2.5.1
 script:
   - bin/cibuild
-  - bin/lint