Skip to content
This repository was archived by the owner on May 3, 2026. It is now read-only.

Commit 2d32df7

Browse files
committed
build: updated workflows
1 parent 80a6552 commit 2d32df7

3 files changed

Lines changed: 7 additions & 6 deletions

File tree

.github/workflows/node.js-ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@ jobs:
5858
run: pnpm install
5959

6060
- name: Build packages
61-
run: npx nx affected -t build:ci
61+
run: pnpm run build:ci:affected
6262

6363
- name: Stop Nx Cloud Session
6464
run: npx nx fix-ci

.github/workflows/npm-publish.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ jobs:
5454
run: pnpm install
5555

5656
- name: Build All Packages
57-
run: npx nx run-many -t build:ci
57+
run: pnpm run build:ci
5858
env:
5959
CI: true
6060

package.json

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@
66
"build": "nx run-many -t build",
77
"build:ci": "nx run-many -t build:ci",
88
"build:affected": "nx affected -t build",
9+
"build:ci:affected": "nx affected -t build:ci",
910
"version:alpha": "nx release version prerelease --preid=alpha",
1011
"version:beta": "nx release version prerelease --preid=beta",
1112
"version:patch": "nx release version patch",
@@ -18,11 +19,11 @@
1819
"packages/*"
1920
],
2021
"devDependencies": {
21-
"@nx/js": "^22.7.0",
22-
"@nx/devkit": "^22.7.0",
23-
"nx": "^22.7.0",
22+
"@nx/js": "^22.7.1",
23+
"@nx/devkit": "^22.7.1",
24+
"nx": "^22.7.1",
2425
"nx-cloud": "^19.1.3",
2526
"typescript": "^6.0.3"
2627
},
27-
"packageManager": "pnpm@11.0.0"
28+
"packageManager": "pnpm@11.0.1"
2829
}

0 commit comments

Comments
 (0)