simple-icons/.travis.yml
Eric Cornelissen f5708c980c
Update Travis CI configuration (#2536)
* Fix NPM deploy stage

* Fix Travis CI configuration file according to errors

... as seen in

- https://travis-ci.com/simple-icons/simple-icons/builds/147690404/config
- https://travis-ci.com/simple-icons/simple-icons/jobs/284138938/config

Note that `skip_cleanup` is no longer necessary according to https://docs.travis-ci.com/user/deployment-v2#cleaning-up-the-git-working-directory
2020-02-07 10:51:57 +02:00

58 lines
1.2 KiB
YAML

os: linux
language: node_js
jobs:
include:
- stage: "Test"
name: "Lint"
language: node_js
node_js: 8
script:
- npm run jsonlint
- npm run svglint
- npm run wslint
- npm run our-lint
- name: "Build website"
language: ruby
rvm: 2.4.1
install:
- gem install jekyll
script:
- jekyll build
- name: "Test package"
language: node_js
node_js: 8
script:
- npm run test
- stage: deploy
name: "Git tag"
language: shell
if: branch = master
before_deploy:
- git config --local user.name "$GITHUB_USERNAME"
- git config --local user.email "$GITHUB_EMAIL"
- export PACKAGE_VERSION=$(cat package.json | grep 'version' | sed 's/[ \",:]//g' | sed 's/version//')
- git tag $PACKAGE_VERSION
deploy:
provider: releases
token: "$GITHUB_TOKEN"
- name: "NPM Package"
language: node_js
node_js: 8
if: branch = master
deploy:
edge: true
provider: npm
email: "$NPM_EMAIL"
api_token: "$NPM_KEY"
on:
branch: master
notifications:
email:
on_success: never
on_failure: change