Skip to content

Commit

Permalink
build: add size-limit job
Browse files Browse the repository at this point in the history
  • Loading branch information
unional committed May 12, 2019
1 parent 49f1352 commit 34e668f
Showing 1 changed file with 13 additions and 0 deletions.
13 changes: 13 additions & 0 deletions .circleci/config.yml
Expand Up @@ -16,12 +16,16 @@ workflows:
- node6:
requires:
- node-latest
- size-limit:
requires:
- node-latest
- release:
filters:
branches:
only: master
requires:
- node-latest
- size-limit
- node10
- node9
- node8
Expand Down Expand Up @@ -101,6 +105,15 @@ jobs:
- run: npm run verify
- store_test_results:
path: .reports/junit
size-limit:
docker:
- image: 'circleci/node:9'
steps:
- checkout
- attach_workspace:
at: '.'
- run: npm run build
- run: npm run size
release:
docker:
- image: circleci/node:11
Expand Down

0 comments on commit 34e668f

Please sign in to comment.