unee-t / frontend

Meteor front end
https://case.dev.unee-t.com/
GNU Affero General Public License v3.0
9 stars 17 forks source link

Travis CI test are failing in the current version of the Master #901

Closed franck-boullier closed 4 years ago

franck-boullier commented 4 years ago

In https://github.com/unee-t/frontend/commit/3cfd038c9d0f05d9d5bce287069be7adb8c900c4 the Travis CI tests are failing.

The reason for the fail in most likely an incompatibility in node js version. Travis CI is building an image for node Js lts (node js 12).

See Travis CI test for build #1325

We need to make sure that tests are:

OR

franck-boullier commented 4 years ago

After more investigations this is probably due to the way the image is built.

Meteor already includes all the objects it needs to run node.js, npm). The images were are bulding are including node.js and other unnecessary elements.

We should:

This works on a local machine.

franck-boullier commented 4 years ago

This has been fixed with PR #907