-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
12 changed files
with
52 additions
and
30 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,28 @@ | ||
name: Publish packages to NPM | ||
|
||
on: | ||
release: | ||
types: [published] | ||
|
||
jobs: | ||
publish-npm: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v2 | ||
- uses: actions/setup-node@v1 | ||
with: | ||
node-version: 14 | ||
registry-url: https://registry.npmjs.org/ | ||
- uses: little-core-labs/[email protected] | ||
id: tagName | ||
with: | ||
tagRegex: "v(.*)" | ||
tagRegexGroup: 1 | ||
- run: npm install | ||
- run: npx lerna bootstrap | ||
- run: npm run build | ||
- run: npm test | ||
- run: npm run lint | ||
- run: npx lerna publish from-package --yes --no-git-tag-version --no-push | ||
env: | ||
NODE_AUTH_TOKEN: ${{secrets.npm_token}} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
name: Validate commit | ||
|
||
on: | ||
pull_request: | ||
push: | ||
branches: | ||
- "**" | ||
tags-ignore: | ||
- "v*.*" # We don't want this to run on release | ||
|
||
jobs: | ||
validate: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v2 | ||
- uses: actions/setup-node@v1 | ||
with: | ||
node-version: 14 | ||
registry-url: https://registry.npmjs.org/ | ||
- run: npm install | ||
- run: npx lerna bootstrap | ||
- run: npm run build | ||
- run: npm test | ||
- run: npm run lint |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,5 @@ | ||
{ | ||
"name": "@frui.ts/apiclient", | ||
"publishConfig": { | ||
"registry": "https://nexus.eman.cz/repository/eman-npm/" | ||
}, | ||
"version": "0.7.2", | ||
"description": "Frui.ts helpers for http communication", | ||
"author": "Augustin Šulc <[email protected]>", | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,5 @@ | ||
{ | ||
"name": "@frui.ts/bootstrap", | ||
"publishConfig": { | ||
"registry": "https://nexus.eman.cz/repository/eman-npm/" | ||
}, | ||
"version": "0.7.2", | ||
"description": "Bootstrap controls ready for Frui.ts integration", | ||
"author": "Augustin Šulc <[email protected]>", | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,5 @@ | ||
{ | ||
"name": "@frui.ts/data", | ||
"publishConfig": { | ||
"registry": "https://nexus.eman.cz/repository/eman-npm/" | ||
}, | ||
"version": "0.7.2", | ||
"description": "Helpers and interfaces for handling paged and sorted data sets", | ||
"author": "Augustin Šulc <[email protected]>", | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,5 @@ | ||
{ | ||
"name": "@frui.ts/datascreens", | ||
"publishConfig": { | ||
"registry": "https://nexus.eman.cz/repository/eman-npm/" | ||
}, | ||
"version": "0.7.2", | ||
"description": "> TODO: description", | ||
"author": "Augustin Šulc <[email protected]>", | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,5 @@ | ||
{ | ||
"name": "@frui.ts/dirtycheck", | ||
"publishConfig": { | ||
"registry": "https://nexus.eman.cz/repository/eman-npm/" | ||
}, | ||
"version": "0.7.2", | ||
"description": "Observable dirty checking", | ||
"author": "Augustin Šulc <[email protected]>", | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,5 @@ | ||
{ | ||
"name": "@frui.ts/screens", | ||
"publishConfig": { | ||
"registry": "https://nexus.eman.cz/repository/eman-npm/" | ||
}, | ||
"version": "0.7.2", | ||
"description": "Frui.ts screens", | ||
"author": "Augustin Šulc <[email protected]>", | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,5 @@ | ||
{ | ||
"name": "@frui.ts/views", | ||
"publishConfig": { | ||
"registry": "https://nexus.eman.cz/repository/eman-npm/" | ||
}, | ||
"version": "0.7.2", | ||
"description": "> TODO: description", | ||
"author": "Augustin Šulc <[email protected]>", | ||
|