Skip to content

Commit

Permalink
Hotfix/error parsing query string (#86)
Browse files Browse the repository at this point in the history
* update project config

* don't use querystring lib which causes the issue

* Trigger notification

* run phoenix before travis build

* fix performance tests

* fix ci tests

* add deployment from github releases

* keep versions to the minor version because of sui-perf errors
  • Loading branch information
alextremp authored Nov 22, 2019
1 parent d71834e commit 6b1e8e3
Show file tree
Hide file tree
Showing 8 changed files with 38 additions and 7,638 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -2,3 +2,4 @@ node_modules
.idea
dist
coverage
package-lock.json
10 changes: 10 additions & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,10 +5,20 @@ cache:
directories:
- node_modules
script:
- npm run phoenix
- npm run lint
- npm test
- npm run test:integration
- npm run coverage:ci
- |
echo TRAVIS_BRANCH=$TRAVIS_BRANCH - TRAVIS_PULL_REQUEST=$TRAVIS_PULL_REQUEST - TRAVIS_TAG=$TRAVIS_TAG
if [[ $TRAVIS_TAG =~ ^v[0-9]+\.[0-9]+\.[0-9]+$ ]]; then
echo DEPLOY TO NPM: $TRAVIS_TAG
npm publish
elif [[ $TRAVIS_TAG =~ ^v[0-9]+\.[0-9]+\.[0-9]+-beta\.[0-9]+$ ]]; then
echo DEPLOY BETA VERSION
npm publish --tag beta
fi
after_success:
- bash <(curl -s https://codecov.io/bash)
Loading

0 comments on commit 6b1e8e3

Please sign in to comment.