mirror of
https://github.com/verdaccio/verdaccio.git
synced 2024-12-16 21:56:25 -05:00
4efbad1ef7
* chore: bumps verdaccio-htpasswd@2.0.0 * chore: removes circle ci and publish using github-actions * chore: adds bash doctype * chore: adds build and test workflow * chore: fixes coverage error * chore: adds e2e tests * chore: adds headless arg * chore: sets puppeteer in docker env * chore: runs tets through bash * chore: minor fixes
158 lines
3.5 KiB
YAML
158 lines
3.5 KiB
YAML
version: 2
|
|
|
|
aliases:
|
|
- &defaults
|
|
working_directory: ~/verdaccio
|
|
- &node8_executor
|
|
docker:
|
|
- image: circleci/node:8
|
|
- &node10_browser_executor
|
|
docker:
|
|
- image: circleci/node:10-browsers
|
|
- &node10_executor
|
|
docker:
|
|
- image: circleci/node:10
|
|
- &node11_executor
|
|
docker:
|
|
- image: circleci/node:11.10.1
|
|
- &default_executor
|
|
<<: *node10_executor
|
|
- &repo_key
|
|
repo-{{ .Branch }}-{{ .Revision }}
|
|
- &coverage_key
|
|
coverage-{{ .Branch }}-{{ .Revision }}
|
|
- &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
|
|
filters:
|
|
tags:
|
|
only: /.*/
|
|
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
|
|
- 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
|
|
paths:
|
|
- ./*
|
|
|
|
test_node8:
|
|
<<: *defaults
|
|
<<: *node8_executor
|
|
steps:
|
|
- *restore_repo
|
|
- run:
|
|
name: Test with Node 8
|
|
command: |
|
|
yarn test
|
|
yarn test:functional
|
|
test_node10:
|
|
<<: *defaults
|
|
<<: *node10_executor
|
|
steps:
|
|
- *restore_repo
|
|
- run:
|
|
name: Test with Node 10
|
|
command: |
|
|
yarn run test
|
|
yarn test:functional
|
|
|
|
test_node11:
|
|
<<: *defaults
|
|
<<: *node11_executor
|
|
steps:
|
|
- *restore_repo
|
|
- run:
|
|
name: Test with Node 11
|
|
command: |
|
|
yarn run test
|
|
yarn test:functional
|
|
|
|
test_e2e:
|
|
<<: *defaults
|
|
<<: *node10_browser_executor
|
|
steps:
|
|
- *restore_repo
|
|
- run:
|
|
name: Test End-to-End
|
|
command: yarn run test:e2e
|
|
coverage:
|
|
<<: *defaults
|
|
<<: *default_executor
|
|
steps:
|
|
- *restore_repo
|
|
- restore_cache:
|
|
key: *coverage_key
|
|
- run:
|
|
name: Publish coverage
|
|
command: yarn run coverage:publish
|
|
- store_artifacts:
|
|
path: coverage/clover.xml
|
|
prefix: tests
|
|
- store_artifacts:
|
|
path: coverage
|
|
prefix: coverage
|
|
- store_test_results:
|
|
path: coverage/clover.xml
|
|
|
|
workflows:
|
|
version: 2
|
|
workflow:
|
|
jobs:
|
|
- prepare:
|
|
<<: *ignore_non_dev_branches
|
|
- test_node8:
|
|
requires:
|
|
- prepare
|
|
<<: *ignore_non_dev_branches
|
|
- test_node10:
|
|
requires:
|
|
- prepare
|
|
<<: *ignore_non_dev_branches
|
|
- test_node11:
|
|
requires:
|
|
- prepare
|
|
<<: *ignore_non_dev_branches
|
|
- test_e2e:
|
|
requires:
|
|
- prepare
|
|
<<: *ignore_non_dev_branches
|
|
- coverage:
|
|
requires:
|
|
- test_node8
|
|
- test_node10
|
|
- test_node11
|
|
- test_e2e
|
|
<<: *ignore_non_dev_branches
|