Skip to content

Commit 490ccc0

Browse files
committed
fix(common): Attempt to trigger release.
1 parent 72b5805 commit 490ccc0

File tree

3 files changed

+3
-40
lines changed

3 files changed

+3
-40
lines changed

.circleci/config.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ jobs:
1919
command: yarn build
2020
- run:
2121
name: test
22-
command: yarn test
22+
command: yarn test:ci
2323
- codecov/upload:
2424
file: coverage/*.json
2525
flags: frontend
@@ -37,7 +37,7 @@ jobs:
3737
- run:
3838
name: Release new version
3939
command: |
40-
npm set //registry.npmjs.org/:_authToken=$NPM_TOKEN
40+
echo "//registry.npmjs.org/:_authToken=${NPM_TOKEN}" > ~/react-forms/.npmrc
4141
yarn release
4242
deploy:
4343
working_directory: ~/react-forms

.travis.yml

Lines changed: 0 additions & 37 deletions
This file was deleted.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
"build": "lerna run build",
1212
"vendor": "lerna run vendor",
1313
"test": "jest --coverage",
14-
"test-ci": "jest --coverage",
14+
"test:ci": "jest --coverage --runInBand",
1515
"test:update": "jest -u",
1616
"release": "semantic-release",
1717
"codecov": "codecov",

0 commit comments

Comments
 (0)