Browse Source

Generate build artifacts on CI

master
meriadec 7 years ago
parent
commit
3d872717e5
No known key found for this signature in database GPG Key ID: 1D2FC2305E2CB399
  1. 10
      .circleci/config.yml

10
.circleci/config.yml

@ -25,5 +25,11 @@ jobs:
name: Flow name: Flow
command: yarn flow command: yarn flow
- run: - run:
name: Compile name: Build
command: yarn compile command: yarn dist:dir
- run:
name: Generate build stats
command: "du -h dist | sort -h > /tmp/build-stats.txt"
- store_artifacts:
path: /tmp/build-stats.txt
destination: build-stats.txt

Loading…
Cancel
Save