mirror of
https://github.com/Llewellynvdm/nativefier.git
synced 2024-11-05 04:47:54 +00:00
8fa394a1c0
- Several deps started requiring it - CI started breaking on Node 8 - Node 8 is end-of-life, no longer maintained - Even latest Debian stable and Ubuntu LTS ship Node 10: https://packages.debian.org/search?suite=stable&keywords=nodejs https://packages.ubuntu.com/search?searchon=names&suite=all§ion=all&keywords=nodejs So, requiring Node 10 and npm 6 going with it.
29 lines
1.4 KiB
YAML
29 lines
1.4 KiB
YAML
language: node_js
|
|
os:
|
|
- linux
|
|
- osx
|
|
- windows
|
|
node_js:
|
|
- '14' # Changing this? Remind to keep linter+deploy conditions below aligned
|
|
- '12'
|
|
- '10'
|
|
install:
|
|
- npm run dev-up
|
|
- npm run build
|
|
script:
|
|
# Only run linter once, for faster CI. Remind to keep linter+deploy conditions below aligned
|
|
- if [ "$TRAVIS_OS_NAME" = "linux" ] && [ "$TRAVIS_NODE_VERSION" = "14" ]; then npm run lint; fi
|
|
- npm test
|
|
# https://docs.travis-ci.com/user/deployment
|
|
deploy:
|
|
provider: npm
|
|
skip_cleanup: true
|
|
email: jiahaog@gmail.com
|
|
api_token:
|
|
secure: al3oL4T5teMYt8GBAN1yx1l5Q25opB2LxYCAl6mbdnuhFBHO47aUnbEa/xJc2B0s6E9S8gJR2pYkg02WBPhr94GU+Pg3Gi/Lu8SqBLbrUzB4PT1ow30aoGIi4qaCvjRSbFuHr1I3gF/OZwcVlibU2C8GHArG2AV+TC2Krpsr6aa4V2qGmJwUMNP+rok2k9YZuUIB5lt8ZONwykYLrDxLOKZiZJ9nCLRBwJLpEUp4+z4k8zE7OTiU8/lFQMUV+WSvZVjjV+d8UCnLGN8LplZGY+VSAoh3JjrTTgXLkoT2EeZ1GFdhToanZnVkcrkT5BgNTEfq3OPB/rkqgCtwCUrOuudJE1uoXauVbYM7EwuahdRFC89Z9VBSHdsSw8Qk4cgSphS+U4+G3/+7oel8zWdHrH+iDj+YWFyB0WeyBvCqiqqzjwTo1Zjw6zzKUQxnmuhBEJ94jktTNV+ixV58VAy+oFecAFB4D8JMIw/ibgoB5ZJJdB8iRmrjhJoUjvUY8S7RpilcieDt0NO0h0y8/Qk0XLy/hgyuohsAsrl/lz4qP/dJVGVO6eSHVSn6tGUbMPymKKY5/s9czQT0fd6zE1ajdefva0YuePsuVVba1OophZM3UtfxPl7mwWiruTlRqwySa287a7ugTIM4wrO4T98zz0aqkYCJoZ9hgdYryrngRvM=
|
|
on:
|
|
tags: true
|
|
repo: jiahaog/nativefier
|
|
node_js: '14' # Remind to keep linter+deploy conditions above aligned
|
|
condition: '$TRAVIS_OS_NAME = linux'
|