anikethsaha / mern

:tada: This is boilerplate for MERN stack with integrations like Redux and SSR :tada:
https://mern.netlify.com
MIT License
98 stars 44 forks source link

Fix CI failing errors #22

Closed anikethsaha closed 4 years ago

anikethsaha commented 5 years ago

Updated

Currently, there are few scripts and steps failing in CI. Those fixes can be simple.


The Build pipeline is important for project development and production.

The tool to use for this : Travis CI

example for similar config file I am looking: .travis.yml :

language: node_js
node_js:
    - "10"
    - "8"
    - "6"
cache:
    directories:
        - ~/.npm
script: 
        - npm run test 
        - npm run lint

Please add better scripts here and in package.json to make it more feasible and smooth. Thanks

anikethsaha commented 5 years ago

done at https://github.com/anikethsaha/MERN-Boilerplate/commit/9f7023871acceaa5c8482e2328a1cd02d4aaa030

anikethsaha commented 5 years ago

Reopening for fixing status

lexcorp16 commented 4 years ago

Hi @anikethsaha Can you point me in the right direction on what needs to be done. Thanks

anikethsaha commented 4 years ago

@lexcorp16 You can check the logs here https://travis-ci.org/anikethsaha/MERN-Boilerplate/builds/578456436 There are only linting issues so you can get the help of automatic linting fixing commands or even vscode can help with this.