Skip to content

Commit d71c0a8

Browse files
authored
ci: update snapshots CI workflow to use the new build-snapshots script (#32474)
Previously, in snapshots the release config was used. See: https://github.com/angular/cdk-builds/blob/8ff0017b73614e4a80bd0c3d4a7fa0fe5ef10954/package.json#L3
1 parent 0f26a3c commit d71c0a8

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

.github/workflows/ci.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -135,8 +135,8 @@ jobs:
135135
uses: angular/dev-infra/github-actions/bazel/configure-remote@95e3a0ede6dfa1aedd34b03918ad72b18f87e5ae
136136
- name: Install node modules
137137
run: pnpm install --frozen-lockfile
138-
- name: Build and Verify Release Output
139-
run: pnpm build-and-check-release-output
138+
- name: Build Snapshots
139+
run: pnpm build-snapshots
140140
- name: Verify tooling setup
141141
run: pnpm check-tooling-setup
142142
- name: Build Docs Content

package.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,7 @@
2020
"build": "node --no-warnings=ExperimentalWarning --loader ts-node/esm/transpile-only ./scripts/build-packages-dist-main.mts",
2121
"build-docs-content": "node --no-warnings=ExperimentalWarning --loader ts-node/esm/transpile-only ./scripts/build-docs-content-main.mts",
2222
"build-and-check-release-output": "node --no-warnings=ExperimentalWarning --loader ts-node/esm/transpile-only scripts/build-and-check-release-output.mts",
23+
"build-snapshots": "node --no-warnings=ExperimentalWarning --loader ts-node/esm/transpile-only scripts/build-packages-dist-main.mts",
2324
"dev-app": "ibazel run //src/dev-app:devserver",
2425
"docs-app": "ibazel run //docs:serve",
2526
"universal-app": "bazel run //src/universal-app:server",

0 commit comments

Comments
 (0)