lombardpress / lombardpress-webjs

0 stars 3 forks source link

travis ci yarn build not working, currently set to only run tests #16

Open jeffreycwitt opened 4 years ago

jeffreycwitt commented 4 years ago

Travis ci config is currently set to...

language: node_js
node_js:
  - 10
cache:
  directories:
    - node_modules
script:
  - yarn test

This successfully runs tests but it would nice for yarn build to also work. I'm not yet sure what the problem is. However ideally, the travis config would be changed to include yarn build as seen below

language: node_js
node_js:
  - 10
cache:
  directories:
    - node_modules
script:
  - yarn build
  - yarn test