Skip to content

Commit c8a3726

Browse files
committed
fix(ci): fixed nx cloud run
1 parent 088e0d1 commit c8a3726

File tree

6 files changed

+10
-9
lines changed

6 files changed

+10
-9
lines changed

.github/workflows/on-push-or-pull.yml

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -61,9 +61,6 @@ jobs:
6161
with:
6262
path: ${{ env.CACHE_DIST_PATH }}
6363
key: dist-${{ github.run_id }}
64-
# - run: |
65-
# npx nx build ngx-bootstrap --runner=cloud --configuration=production
66-
# npx nx build --runner=cloud --configuration=production
6764
- run: |
6865
npx nx build ngx-bootstrap --configuration=production
6966
npx nx prerender --configuration=production

.github/workflows/on-release.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -51,8 +51,8 @@ jobs:
5151
path: dist
5252
key: dist-${{ github.run_id }}
5353
- run: |
54-
npx nx build ngx-bootstrap --runner=cloud --configuration=production
55-
npx nx prerender --runner=cloud --configuration=production
54+
npx nx build ngx-bootstrap --configuration=production
55+
npx nx prerender --configuration=production
5656
5757
# update release notes in github
5858
# update_release_draft:

nx.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,7 @@
6464
}
6565
},
6666
"@nx/eslint:lint": {
67-
"inputs": ["default", "{workspaceRoot}/.eslintrc.json"],
67+
"inputs": ["default", "{workspaceRoot}/.eslintrc.json"]
6868
}
6969
},
7070
"useInferencePlugins": false,

package-lock.json

Lines changed: 3 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -140,5 +140,8 @@
140140
"ts-node": "10.9.1",
141141
"typescript": "5.5.4",
142142
"webpack-bundle-analyzer": "4.5.0"
143+
},
144+
"overrides": {
145+
"stylus": "https://github.com/stylus/stylus/archive/refs/tags/0.64.0.tar.gz"
143146
}
144147
}

src/progressbar/bar.component.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ import { ProgressbarType } from './progressbar-type.interface';
2828
'[attr.aria-valuemax]': 'max',
2929
'[style.height.%]': '"100"',
3030
'[style.width.%]': 'percent'
31-
}
31+
},
3232
standalone: true
3333
})
3434
export class BarComponent implements OnChanges {

0 commit comments

Comments
 (0)