mirror of
https://github.com/quine-global/hyper.git
synced 2026-01-12 20:18:41 -09:00
* Add CircleCI Badge * Fix typo * Replace yarn by npm * Replace yarn by npm * Always generate the artifacts * Use yarn for everything * Also pin dependencies with Yarn * Install yarn * Adjusted config * Only copy ZIP file * Only build our branches * Prevent Travis from building on macOS
26 lines
353 B
YAML
26 lines
353 B
YAML
machine:
|
|
xcode:
|
|
version: 8.2
|
|
|
|
dependencies:
|
|
pre:
|
|
- npm install -g yarn
|
|
override:
|
|
- yarn
|
|
|
|
test:
|
|
override:
|
|
- yarn test
|
|
|
|
deployment:
|
|
artifacts:
|
|
branch: /.*/
|
|
owner: zeit
|
|
commands:
|
|
- yarn run dist
|
|
- cp dist/*.zip $CIRCLE_ARTIFACTS
|
|
release:
|
|
tag: /.*/
|
|
owner: zeit
|
|
commands:
|
|
- yarn run dist
|