koajs / router

Router middleware for Koa. Maintained by @forwardemail and @ladjs.
MIT License
871 stars 176 forks source link

Travis Node Version Support Update #61

Closed JacobMGEvans closed 4 years ago

JacobMGEvans commented 4 years ago

To avoid breaking builds and to update the Travis pipeline, bumping the Node versions to be more in line with Node release support can be implemented like this example.

v10 & v11 are LTS (long term support)

language: node_js
node_js:
  - "8"
  - "9"
  - "10"
  - "11"
  - "12"
notifications:
  email:
    on_success: never
niftylettuce commented 4 years ago

👍 thank you as always @JacobMGEvans