16 lines
		
	
	
		
			194 B
		
	
	
	
		
			Bash
		
	
	
		
			Executable File
		
	
	
	
	
			
		
		
	
	
			16 lines
		
	
	
		
			194 B
		
	
	
	
		
			Bash
		
	
	
		
			Executable File
		
	
	
	
	
#!/usr/bin/env bash
 | 
						|
 | 
						|
set -ex -o pipefail
 | 
						|
 | 
						|
if [[ ${TRAVIS} && ${CI_MODE} != "lint" ]]; then
 | 
						|
  exit 0;
 | 
						|
fi
 | 
						|
 | 
						|
 | 
						|
echo 'travis_fold:start:lint'
 | 
						|
 | 
						|
gulp lint
 | 
						|
gulp check-format
 | 
						|
 | 
						|
echo 'travis_fold:end:lint'
 |