mirror of
https://github.com/SomboChea/ui
synced 2024-11-24 15:04:27 +07:00
Merge branch '4.x-master' into test/bdd-acceptance-testing-setup
This commit is contained in:
commit
df4e45cd6c
168
.circleci/config.yml
Normal file
168
.circleci/config.yml
Normal file
@ -0,0 +1,168 @@
|
|||||||
|
version: 2
|
||||||
|
|
||||||
|
aliases:
|
||||||
|
- &defaults
|
||||||
|
working_directory: ~/ui-theme
|
||||||
|
- &node11_executor
|
||||||
|
docker:
|
||||||
|
- image: circleci/node:11.10.1
|
||||||
|
- &node8_executor
|
||||||
|
docker:
|
||||||
|
- image: circleci/node:8
|
||||||
|
- &node10_executor
|
||||||
|
docker:
|
||||||
|
- image: circleci/node:10
|
||||||
|
- &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
|
||||||
|
restore_cache:
|
||||||
|
keys:
|
||||||
|
- *repo_key
|
||||||
|
- &ignore_non_dev_branches
|
||||||
|
filters:
|
||||||
|
tags:
|
||||||
|
only: /.*/
|
||||||
|
branches:
|
||||||
|
ignore:
|
||||||
|
- /release\/.*/
|
||||||
|
- &execute_on_release
|
||||||
|
filters:
|
||||||
|
tags:
|
||||||
|
only: /(v)?[0-9]+(\.[0-9]+)*/
|
||||||
|
branches:
|
||||||
|
ignore:
|
||||||
|
- /.*/
|
||||||
|
|
||||||
|
jobs:
|
||||||
|
prepare:
|
||||||
|
<<: *defaults
|
||||||
|
<<: *default_executor
|
||||||
|
steps:
|
||||||
|
- *restore_repo
|
||||||
|
- checkout
|
||||||
|
- restore_cache:
|
||||||
|
key: *base_config_key
|
||||||
|
- run:
|
||||||
|
name: 'Base environment setup'
|
||||||
|
command: echo "//registry.npmjs.org/:_authToken=${NPM_TOKEN}" > ~/.npmrc
|
||||||
|
- save_cache:
|
||||||
|
key: *base_config_key
|
||||||
|
paths:
|
||||||
|
- ~/.npmrc
|
||||||
|
- ~/.gitconfig
|
||||||
|
- restore_cache:
|
||||||
|
key: *yarn_cache_key
|
||||||
|
- run:
|
||||||
|
name: Install Js dependencies
|
||||||
|
command: yarn install --no-progress --registry https://registry.verdaccio.org --no-lockfile
|
||||||
|
- run:
|
||||||
|
name: Build project
|
||||||
|
command: yarn run build
|
||||||
|
- save_cache:
|
||||||
|
key: *yarn_cache_key
|
||||||
|
paths:
|
||||||
|
- ~/.yarn
|
||||||
|
- ~/.cache/yarn
|
||||||
|
- node_modules
|
||||||
|
- save_cache:
|
||||||
|
key: *repo_key
|
||||||
|
paths:
|
||||||
|
- ~/ui-theme
|
||||||
|
|
||||||
|
test_node11:
|
||||||
|
<<: *defaults
|
||||||
|
<<: *node11_executor
|
||||||
|
steps:
|
||||||
|
- *restore_repo
|
||||||
|
- run:
|
||||||
|
name: Test with Node 11
|
||||||
|
command: yarn run test
|
||||||
|
|
||||||
|
test_node8:
|
||||||
|
<<: *defaults
|
||||||
|
<<: *node8_executor
|
||||||
|
steps:
|
||||||
|
- *restore_repo
|
||||||
|
- run:
|
||||||
|
name: Test with Node 8
|
||||||
|
command: yarn test
|
||||||
|
|
||||||
|
test_node10:
|
||||||
|
<<: *defaults
|
||||||
|
<<: *node10_executor
|
||||||
|
steps:
|
||||||
|
- *restore_repo
|
||||||
|
- run:
|
||||||
|
name: Test with Node 10
|
||||||
|
command: yarn run test
|
||||||
|
- save_cache:
|
||||||
|
key: *coverage_key
|
||||||
|
paths:
|
||||||
|
- coverage
|
||||||
|
|
||||||
|
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
|
||||||
|
|
||||||
|
publish_package:
|
||||||
|
<<: *defaults
|
||||||
|
<<: *default_executor
|
||||||
|
steps:
|
||||||
|
- *restore_repo
|
||||||
|
- restore_cache:
|
||||||
|
key: *base_config_key
|
||||||
|
- run:
|
||||||
|
name: Publish
|
||||||
|
command: yarn publish
|
||||||
|
|
||||||
|
workflows:
|
||||||
|
version: 2
|
||||||
|
workflow:
|
||||||
|
jobs:
|
||||||
|
- prepare:
|
||||||
|
<<: *ignore_non_dev_branches
|
||||||
|
- test_node11:
|
||||||
|
requires:
|
||||||
|
- prepare
|
||||||
|
<<: *ignore_non_dev_branches
|
||||||
|
- test_node8:
|
||||||
|
requires:
|
||||||
|
- prepare
|
||||||
|
<<: *ignore_non_dev_branches
|
||||||
|
- test_node10:
|
||||||
|
requires:
|
||||||
|
- prepare
|
||||||
|
<<: *ignore_non_dev_branches
|
||||||
|
- coverage:
|
||||||
|
requires:
|
||||||
|
- test_node11
|
||||||
|
- test_node8
|
||||||
|
- test_node10
|
||||||
|
<<: *ignore_non_dev_branches
|
||||||
|
- publish_package:
|
||||||
|
requires:
|
||||||
|
- coverage
|
||||||
|
<<: *execute_on_release
|
@ -1,7 +1,6 @@
|
|||||||
|
|
||||||
## npm
|
## npm
|
||||||
/*
|
/*
|
||||||
!/static/*
|
!/static/**/*
|
||||||
!index.js
|
!index.js
|
||||||
!README.md
|
!README.md
|
||||||
|
|
||||||
|
25
CHANGELOG.md
25
CHANGELOG.md
@ -2,6 +2,31 @@
|
|||||||
|
|
||||||
All notable changes to this project will be documented in this file. See [standard-version](https://github.com/conventional-changelog/standard-version) for commit guidelines.
|
All notable changes to this project will be documented in this file. See [standard-version](https://github.com/conventional-changelog/standard-version) for commit guidelines.
|
||||||
|
|
||||||
|
<a name="0.1.6"></a>
|
||||||
|
## [0.1.6](https://github.com/verdaccio/ui/compare/v0.1.5...v0.1.6) (2019-05-07)
|
||||||
|
|
||||||
|
|
||||||
|
### Bug Fixes
|
||||||
|
|
||||||
|
* pattern allow yarn to add all files on pack ([#50](https://github.com/verdaccio/ui/issues/50)) ([9ffa629](https://github.com/verdaccio/ui/commit/9ffa629))
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<a name="0.1.5"></a>
|
||||||
|
## [0.1.5](https://github.com/verdaccio/ui/compare/v0.1.4...v0.1.5) (2019-05-04)
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<a name="0.1.4"></a>
|
||||||
|
## [0.1.4](https://github.com/verdaccio/ui/compare/v0.1.3...v0.1.4) (2019-05-04)
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<a name="0.1.3"></a>
|
||||||
|
## [0.1.3](https://github.com/verdaccio/ui/compare/v0.1.2...v0.1.3) (2019-05-04)
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<a name="0.1.2"></a>
|
<a name="0.1.2"></a>
|
||||||
## [0.1.2](https://github.com/verdaccio/ui/compare/v0.1.1...v0.1.2) (2019-04-28)
|
## [0.1.2](https://github.com/verdaccio/ui/compare/v0.1.1...v0.1.2) (2019-04-28)
|
||||||
|
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"name": "@verdaccio/ui-theme",
|
"name": "@verdaccio/ui-theme",
|
||||||
"version": "0.1.2",
|
"version": "0.1.6",
|
||||||
"description": "Verdaccio User Interface",
|
"description": "Verdaccio User Interface",
|
||||||
"author": {
|
"author": {
|
||||||
"name": "Verdaccio Core Team"
|
"name": "Verdaccio Core Team"
|
||||||
|
13
scripts/gh_publish.sh
Executable file
13
scripts/gh_publish.sh
Executable file
@ -0,0 +1,13 @@
|
|||||||
|
#!/bin/bash
|
||||||
|
|
||||||
|
# Get the last tag from GitHub
|
||||||
|
lastTag=$(git describe --tags $(git rev-list --tags --max-count=1))
|
||||||
|
|
||||||
|
# Print it to the console for verification
|
||||||
|
echo "Bumping version to new tag: ${lastTag}"
|
||||||
|
|
||||||
|
# creating .npmrc
|
||||||
|
echo "//$REGISTRY_URL/:_authToken=$REGISTRY_AUTH_TOKEN" > .npmrc
|
||||||
|
|
||||||
|
# Publish to NPM
|
||||||
|
npm publish --registry https://$REGISTRY_URL/
|
@ -6,8 +6,5 @@ lastTag=$(git describe --tags $(git rev-list --tags --max-count=1))
|
|||||||
# Print it to the console for verification
|
# Print it to the console for verification
|
||||||
echo "Bumping version to new tag: ${lastTag}"
|
echo "Bumping version to new tag: ${lastTag}"
|
||||||
|
|
||||||
# creating .npmrc
|
|
||||||
echo "//$REGISTRY_URL/:_authToken=$REGISTRY_AUTH_TOKEN" > .npmrc
|
|
||||||
|
|
||||||
# Publish to NPM
|
# Publish to NPM
|
||||||
npm publish --registry https://$REGISTRY_URL/
|
npm publish
|
||||||
|
File diff suppressed because one or more lines are too long
Loading…
Reference in New Issue
Block a user