smokodon/test:.travis.yml@f8d84e7
language: node_js
# osx backlog is often deep, so to be polite we can just hit these highlights
matrix:
include:
- os: linux
dist: focal
node_js: 6
- os: linux
dist: bionic
node_js: 6
- os: linux
dist: xenial
node_js: 6
#- os: osx
# node_js: 6
fast_finish: true
before_install:
#- nvm install 8
#- nvm use 8
- node -v
#- nvm install-latest-npm
- npm show npm engines
script:
- echo Witam
# jobs:
# include:
# #- dist: xenial
# - dist: bionic
# - dist: focal
# - group: stable
# language: elixir
# dist: rhel8
# script:
# - cat /etc/*-release
# - echo "Job 1"
# - group: stable
# language: go
# dist: rhel8
# script:
# - cat /etc/*-release
# - echo "Job 1"
# - group: stable
# language: groovy
# dist: rhel8
# script:
# - cat /etc/*-release
# - echo "Job 1"
# - group: stable
# language: perl
# dist: rhel8
# script:
# - cat /etc/*-release
# - echo "Job 1"
# - group: stable
# language: php
# dist: rhel8
# script:
# - cat /etc/*-release
# - echo "Job 1"
# - group: stable
# language: python
# dist: rhel8
# script:
# - cat /etc/*-release
# - echo "Job 1"
# - group: stable
# language: ruby
# dist: rhel8
# script:
# - cat /etc/*-release
# - echo "Job 1"
Build Config
{
"language": "node_js",
"os": [
"linux"
],
"dist": "xenial",
"before_install": [
"node -v",
"npm show npm engines"
],
"script": [
"echo Witam"
],
"jobs": {
"include": [
{
"os": "linux",
"dist": "focal",
"node_js": "6"
},
{
"os": "linux",
"dist": "bionic",
"node_js": "6"
},
{
"os": "linux",
"dist": "xenial",
"node_js": "6"
}
],
"fast_finish": true
}
}