Skip to content

Commit b0d6868

Browse files
committed
ci: update
1 parent c6a58e9 commit b0d6868

File tree

16 files changed

+45
-21
lines changed

16 files changed

+45
-21
lines changed

.github/workflows/build.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,8 +14,8 @@ jobs:
1414
- name: Setup Node.js and Cache
1515
uses: ./.github/actions/nodejs
1616

17-
- name: Run build packages
18-
run: npx nx run-many --target=build --parallel=1
17+
- run: npx nx run-many --target=build --projects=tag:libs
18+
- run: npx nx run-many --target=build --projects=tag:apps
1919

2020
concurrency:
2121
group: build-${{ github.head_ref }}

.prettierignore

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,4 +12,5 @@ package-lock.json
1212
.angular
1313

1414
/.nx/cache
15-
/.nx/workspace-data
15+
/.nx/workspace-data
16+
CHANGELOG.md

.release-it.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323
}
2424
},
2525
"hooks": {
26-
"after:bump": "npx nx run-many --target=build --output-style=stream && npx nx run-many --target=publish --output-style=stream",
26+
"after:bump": "npx nx run-many --target=publish --projects=tag:libs",
2727
"after:release": "echo Successfully released ${name} v${version} to ${repo.repository}."
2828
}
2929
}

apps/cdk-demo/project.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@
33
"$schema": "../../node_modules/nx/schemas/project-schema.json",
44
"sourceRoot": "apps/cdk-demo/",
55
"projectType": "application",
6+
"tags": ["apps"],
67
"targets": {
78
"build": {
89
"executor": "@angular-devkit/build-angular:browser",

apps/excel-demo/project.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@
33
"$schema": "../../node_modules/nx/schemas/project-schema.json",
44
"sourceRoot": "apps/excel-demo/",
55
"projectType": "application",
6+
"tags": ["apps"],
67
"targets": {
78
"build": {
89
"executor": "@angular-devkit/build-angular:browser",

apps/flex-layout-demo/project.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@
33
"$schema": "../../node_modules/nx/schemas/project-schema.json",
44
"sourceRoot": "apps/flex-layout-demo/",
55
"projectType": "application",
6+
"tags": ["apps"],
67
"targets": {
78
"build": {
89
"executor": "@angular-devkit/build-angular:browser",

apps/http-demo/project.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@
33
"$schema": "../../node_modules/nx/schemas/project-schema.json",
44
"sourceRoot": "apps/http-demo/",
55
"projectType": "application",
6+
"tags": ["apps"],
67
"targets": {
78
"build": {
89
"executor": "@angular-devkit/build-angular:browser",

apps/logger-demo/project.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@
33
"$schema": "../../node_modules/nx/schemas/project-schema.json",
44
"sourceRoot": "apps/logger-demo/",
55
"projectType": "application",
6+
"tags": ["apps"],
67
"targets": {
78
"build": {
89
"executor": "@angular-devkit/build-angular:browser",

apps/ngxs-demo/project.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@
33
"$schema": "../../node_modules/nx/schemas/project-schema.json",
44
"sourceRoot": "apps/ngxs-demo/",
55
"projectType": "application",
6+
"tags": ["apps"],
67
"targets": {
78
"build": {
89
"executor": "@angular-devkit/build-angular:browser",

apps/tooltip-demo/project.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@
33
"$schema": "../../node_modules/nx/schemas/project-schema.json",
44
"sourceRoot": "apps/tooltip-demo/",
55
"projectType": "application",
6+
"tags": ["apps"],
67
"targets": {
78
"build": {
89
"executor": "@angular-devkit/build-angular:browser",

0 commit comments

Comments
 (0)