0
Fork 0
mirror of https://github.com/verdaccio/verdaccio.git synced 2024-12-16 21:56:25 -05:00
verdaccio/.circleci/config.yml

159 lines
3.5 KiB
YAML
Raw Normal View History

2018-06-03 08:50:44 -05:00
version: 2
aliases:
- &defaults
working_directory: ~/verdaccio
- &node8_executor
docker:
- image: circleci/node:8
2019-02-24 17:56:02 -05:00
- &node10_browser_executor
2018-06-03 08:50:44 -05:00
docker:
2019-02-24 17:56:02 -05:00
- image: circleci/node:10-browsers
2018-06-03 08:50:44 -05:00
- &node10_executor
docker:
- image: circleci/node:10
2018-12-07 00:41:37 -05:00
- &node11_executor
docker:
- image: circleci/node:11.10.1
2018-06-03 08:50:44 -05:00
- &default_executor
2019-02-24 17:56:02 -05:00
<<: *node10_executor
2018-06-03 08:50:44 -05:00
- &repo_key
repo-{{ .Branch }}-{{ .Revision }}
2018-06-09 11:19:43 -05:00
- &coverage_key
coverage-{{ .Branch }}-{{ .Revision }}
2018-06-03 08:50:44 -05:00
- &base_config_key
base-config-{{ .Branch }}-{{ .Revision }}
- &yarn_cache_key
yarn-sha-{{ checksum "yarn.lock" }}
- &restore_repo
attach_workspace:
at: ~/verdaccio
- &ignore_non_dev_branches
2018-06-03 08:50:44 -05:00
filters:
2018-06-12 03:28:55 -05:00
tags:
only: /.*/
2018-06-03 08:50:44 -05:00
branches:
ignore:
- gh-pages
- l10n_master
- /release\/.*/
jobs:
prepare:
<<: *defaults
<<: *default_executor
steps:
- checkout
- restore_cache:
key: *base_config_key
- restore_cache:
key: *yarn_cache_key
- run:
name: Install Js dependencies
command: yarn install --no-progress --registry https://registry.verdaccio.org
2018-06-03 08:50:44 -05:00
- run:
name: Prepare CI
command: yarn run pre:ci
- run:
name: Build project
command: yarn run code:build
- save_cache:
key: *yarn_cache_key
paths:
- ~/.yarn
- ~/.cache/yarn
- node_modules
- persist_to_workspace:
root: ~/verdaccio
2018-06-03 08:50:44 -05:00
paths:
- ./*
2018-06-03 08:50:44 -05:00
test_node8:
<<: *defaults
<<: *node8_executor
steps:
- *restore_repo
- run:
name: Test with Node 8
command: |
yarn test
2019-02-24 17:56:02 -05:00
yarn test:functional
2018-06-03 08:50:44 -05:00
test_node10:
<<: *defaults
<<: *node10_executor
steps:
- *restore_repo
- run:
name: Test with Node 10
command: |
yarn run test
yarn test:functional
2018-06-03 08:50:44 -05:00
2018-12-07 00:41:37 -05:00
test_node11:
<<: *defaults
<<: *node11_executor
2018-12-07 00:41:37 -05:00
steps:
- *restore_repo
- run:
name: Test with Node 11
command: |
yarn run test
yarn test:functional
2018-06-03 08:50:44 -05:00
test_e2e:
<<: *defaults
2019-02-24 17:56:02 -05:00
<<: *node10_browser_executor
2018-06-03 08:50:44 -05:00
steps:
- *restore_repo
- run:
name: Test End-to-End
command: yarn run test:e2e
coverage:
<<: *defaults
<<: *default_executor
steps:
- *restore_repo
2018-06-09 11:19:43 -05:00
- restore_cache:
key: *coverage_key
2018-06-03 08:50:44 -05:00
- run:
name: Publish coverage
command: yarn run coverage:publish
2018-06-09 11:19:43 -05:00
- store_artifacts:
path: coverage/clover.xml
prefix: tests
- store_artifacts:
path: coverage
prefix: coverage
- store_test_results:
path: coverage/clover.xml
2018-06-03 08:50:44 -05:00
workflows:
version: 2
workflow:
jobs:
- prepare:
<<: *ignore_non_dev_branches
2018-06-03 08:50:44 -05:00
- test_node8:
requires:
- prepare
<<: *ignore_non_dev_branches
2018-06-03 08:50:44 -05:00
- test_node10:
requires:
- prepare
<<: *ignore_non_dev_branches
2018-12-07 00:41:37 -05:00
- test_node11:
requires:
- prepare
<<: *ignore_non_dev_branches
2018-06-03 08:50:44 -05:00
- test_e2e:
requires:
- prepare
<<: *ignore_non_dev_branches
2018-06-03 08:50:44 -05:00
- coverage:
requires:
2018-06-09 11:19:43 -05:00
- test_node8
- test_node10
2018-12-07 00:41:37 -05:00
- test_node11
2018-06-09 11:19:43 -05:00
- test_e2e
<<: *ignore_non_dev_branches