forked from jasperes/bash-yaml
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.travis.yml
More file actions
28 lines (25 loc) · 688 Bytes
/
Copy path.travis.yml
File metadata and controls
28 lines (25 loc) · 688 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
jobs:
include:
- stage: lint
os: linux
language: node_js
node_js: 8
before_install:
- git clone https://github.com/TravisToolbox/shellcheck-travis.git
install:
- ./shellcheck-travis/install.sh
- npm install editorconfig-checker
script:
- set -e
- ./shellcheck-travis/scan.sh
- ./node_modules/.bin/editorconfig-checker --list-files --exclude-pattern './shellcheck-travis/*'
- stage: test
os: linux
language: bash
script: bash ./test/test.sh --debug
- stage: test
os: osx
language: bash
script: bash ./test/test.sh --debug
notifications:
email: false