Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Remove duplication fom Travis config #3035

Merged
merged 5 commits into from
Jun 10, 2019
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
35 changes: 22 additions & 13 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,26 +11,35 @@ install:

jobs:
include:
- stage: Build
- &build
stage: Build
script:
- yarn lint
- yarn build
node_js: "8"
- script:
- yarn lint
- yarn build
node_js: "10"

- stage: Tests
- <<: *build
node_js: '8'

- &unit
stage: Test
script: yarn test:unit
name: "Unit Tests NodeJS 8"
node_js: "8"
- script: yarn test:unit
name: "Unit Tests NodeJS 10"
name: "NodeJS 10 unit tests"
node_js: "10"
- script: yarn installer:ci
name: "E2E Tests"
if: branch IN (master, develop)

- <<: *unit
name: "NodeJS 8 unit tests"
node_js: "8"

- &installer
script: yarn installer:ci
name: "NodeJS 10 installer test"
if: branch IN (master, develop)
node_js: "10"
addons:
chrome: stable

- <<: *installer
name: "NodeJS 8 installer test"
node_js: "8"

1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -86,6 +86,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
- Extra space if not found products in everything new section home page - @cnviradiya (#2846)
- Load custom fonts without webfont.js - @jahvi (#2944)
- Added some structured data to product page - @cewald (#2910)
- Refactored Travis config @Tjitse-E (#3035)

## [1.9.1] - 2019.05.27

Expand Down