mirror of
https://github.com/kremalicious/blog.git
synced 2024-11-15 01:25:28 +01:00
40 lines
911 B
YAML
40 lines
911 B
YAML
dist: xenial
|
|
language: node_js
|
|
node_js:
|
|
- '11'
|
|
|
|
git:
|
|
depth: 10
|
|
|
|
cache:
|
|
directories:
|
|
- node_modules
|
|
- public
|
|
|
|
before_install:
|
|
- sudo apt-get -qq update
|
|
- sudo apt-get install python3-pip
|
|
- sudo -H pip3 install --upgrade pip
|
|
|
|
before_script:
|
|
- curl -L https://codeclimate.com/downloads/test-reporter/test-reporter-latest-linux-amd64 > ./cc-test-reporter
|
|
- chmod +x ./cc-test-reporter
|
|
- "./cc-test-reporter before-build"
|
|
|
|
script:
|
|
- npm test
|
|
- travis_wait 60 npm run build
|
|
|
|
after_script:
|
|
- "./cc-test-reporter after-build --exit-code $TRAVIS_TEST_RESULT"
|
|
|
|
after_success:
|
|
- pip install --user awscli
|
|
- export PATH=$PATH:$HOME/.local/bin
|
|
- npm run deploy
|
|
|
|
notifications:
|
|
email: false
|
|
slack:
|
|
secure: C5ZRKCMgwypPc765q2JvisCWfxou5x31hKNrSwRhWW6b5WurdWPvc0t/XigF94bCAMDlNjXfUrHZVJCjcnRuNTRZz7pzzNzEt1rmn2haQ5HRyydcW0ToKERUwBDazgng6hhde+2I4RH7H8cLOKGCPnh7DFBWOYXOoiPne5mnLlI=
|