Skip to content

Commit

Permalink
Set up Travis stages.
Browse files Browse the repository at this point in the history
  • Loading branch information
RubenVerborgh committed Oct 27, 2020
1 parent f5cf1a8 commit 149e528
Showing 1 changed file with 27 additions and 8 deletions.
35 changes: 27 additions & 8 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,15 +3,34 @@ node_js:
- "10"
- "12"
- "14"
- "14.0"
- "lts/*"
- "node"

script:
- npm run lint
- npm run validate
- npm run test:integration
- npm run test:unit
- npm run test:system
- npm run test:deploy
- npm run lint
- npm run validate
- npm run test:integration
- npm run test:unit
- npm run test:deploy

after_success:
- npm run coveralls
stages:
- test
- test:optional
- coverage

jobs:
allow_failures:
- node_js:
- "14.0"
- "node"
include:
- stage: test
name: "System tests"
node_js: "14.0"
script:
- npm run test:system
- stage: coverage
node_js: "14"
script:
- npm run coveralls

0 comments on commit 149e528

Please sign in to comment.