Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
fix: TS updates (#370)
* feat: run linter and format files

* chore: circle config
  • Loading branch information
samblacklock committed Nov 30, 2020
1 parent 3cf60aa commit 79f4f00
Show file tree
Hide file tree
Showing 42 changed files with 1,114 additions and 11,492 deletions.
12 changes: 6 additions & 6 deletions .circleci/config.yml
Expand Up @@ -7,8 +7,8 @@ jobs:
steps:
- checkout

- run: npm install
- run: npm run lint
- run: yarn install
- run: yarn run lint

- save_cache:
paths:
Expand All @@ -28,7 +28,7 @@ jobs:
- js-sdk-dependencies-{{ checksum "package.json" }}

# build bundles
- run: npm run rollup
- run: yarn run rollup

# test on node 8
test:
Expand All @@ -43,11 +43,11 @@ jobs:
- js-sdk-dependencies-{{ checksum "package.json" }}

# build bundles
- run: npm run rollup
- run: yarn run rollup

# run tests
- run:
command: npm run test-output
command: yarn run test-output
environment:
MOCHA_FILE: test-results/mocha/test-results.xml
when: always
Expand All @@ -70,7 +70,7 @@ jobs:
- js-sdk-dependencies-{{ checksum "package.json" }}

# build bundles
- run: npm run rollup
- run: yarn run rollup

# release, publish package
- run: npx semantic-release
Expand Down

0 comments on commit 79f4f00

Please sign in to comment.