Compare commits

...

2 Commits

Author SHA1 Message Date
Juan Picado @jotadeveloper
11f50919ef chore(release): 0.1.2 2019-04-28 14:33:39 +02:00
Juan Picado @jotadeveloper
ea1ebde2f1 chore: reverts commit fc11429 2019-04-28 14:32:40 +02:00
4 changed files with 61 additions and 80 deletions

124
.github/main.workflow vendored
View File

@@ -1,93 +1,79 @@
workflow "build & test" {
resolves = [,
"node:12"
]
on = "pull_request"
}
action "PR:filter" {
uses = "actions/bin/filter@master"
args = "action 'opened|synchronize'"
}
action "node:8" {
needs = ["PR:filter"]
uses = "docker://node:8"
args = "sh scripts/build-test.sh"
}
action "node:10" {
needs = ["PR:filter"]
uses = "docker://node:10"
args = "sh scripts/build-test.sh"
}
action "node:11" {
needs = ["PR:filter"]
uses = "docker://node:11"
args = "sh scripts/build-test.sh"
}
action "node:12" {
needs = [
"node:8",
"node:10",
"node:11"
]
uses = "docker://node:12"
args = "sh scripts/build-test.sh"
}
workflow "build, test & release" {
workflow "build and test" {
resolves = [
"github-release"
"lint",
"test",
"branch-filter",
]
on = "push"
}
action "push:node:8" {
uses = "docker://node:8"
args = "sh scripts/build-test.sh"
action "branch-filter" {
uses = "actions/bin/filter@master"
args = "branch"
}
action "push:node:10" {
action "install" {
uses = "docker://node:10"
args = "sh scripts/build-test.sh"
args = "yarn install"
}
action "push:node:11" {
uses = "docker://node:11"
args = "sh scripts/build-test.sh"
action "build" {
uses = "docker://node:10"
needs = ["install"]
args = "yarn run build"
}
action "push:node:12" {
needs = [
"push:node:8",
"push:node:10",
"push:node:11",
action "lint" {
uses = "docker://node:10"
needs = ["install"]
args = "yarn run lint"
}
action "test" {
uses = "docker://node:10"
needs = ["build"]
args = "yarn run test"
}
workflow "release" {
resolves = [
"github-release",
"release:lint",
]
uses = "docker://node:12"
args = "sh scripts/build-test.sh"
on = "push"
}
action "release:filter" {
needs = [
"push:node:12"
]
action "release:tag-filter" {
uses = "actions/bin/filter@master"
args = "tag v*"
}
action "release:authorization" {
needs = ["release:filter"]
uses = "actions/bin/filter@master"
args = ["actor", "ayusharma", "juanpicado"]
action "release:install" {
uses = "docker://node:10"
needs = ["release:tag-filter"]
args = "yarn install"
}
action "release:build" {
uses = "docker://node:10"
needs = ["release:install"]
args = "yarn run build"
}
action "release:lint" {
uses = "docker://node:10"
needs = ["release:install"]
args = "yarn run lint"
}
action "release:test" {
uses = "docker://node:10"
needs = ["release:build"]
args = "yarn run test"
}
action "release:publish" {
needs = [
"release:authorization"
]
needs = ["release:test"]
uses = "docker://node:10"
args = "sh scripts/publish.sh"
secrets = [
@@ -105,4 +91,4 @@ action "github-release" {
secrets = [
"GITHUB_TOKEN",
]
}
}

View File

@@ -2,6 +2,11 @@
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.2"></a>
## [0.1.2](https://github.com/verdaccio/ui/compare/v0.1.1...v0.1.2) (2019-04-28)
<a name="0.1.1"></a>
## [0.1.1](https://github.com/verdaccio/ui/compare/v0.1.0...v0.1.1) (2019-04-28)

View File

@@ -1,6 +1,6 @@
{
"name": "@verdaccio/ui-theme",
"version": "0.1.1",
"version": "0.1.2",
"description": "Verdaccio User Interface",
"author": {
"name": "Verdaccio Core Team"

View File

@@ -1,10 +0,0 @@
#!/bin/bash
yarn install
yarn run build
yarn run lint
yarn run test