Skip to content
This repository has been archived by the owner on Jun 21, 2023. It is now read-only.

Commit

Permalink
馃敡 Add Travis stages
Browse files Browse the repository at this point in the history
  • Loading branch information
Michal Vlas谩k committed Mar 2, 2020
1 parent 45bb98e commit 4130b1a
Showing 1 changed file with 39 additions and 13 deletions.
52 changes: 39 additions & 13 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -1,14 +1,40 @@
language: node_js
node_js:
- '8'
- '9'
- '10'
- '11'
- '12'
- '13'
script:
- npm run lint
- npm run build
- npm run test
- npm run test:coverage
- npm run test:coveralls
os: linux

stages:
- lint
- build
- test

jobs:
include:
- stage: lint
node_js:
- '8'
- '9'
- '10'
- '11'
- '12'
- '13'
script: npm run lint
- stage: build
node_js:
- '8'
- '9'
- '10'
- '11'
- '12'
- '13'
script: npm run build
- stage: test
node_js:
- '8'
- '9'
- '10'
- '11'
- '12'
- '13'
script:
- npm run test
- npm run test:coverage
- npm run test:coveralls

0 comments on commit 4130b1a

Please sign in to comment.