From 07aa66ae4ee82e0c83b29d0079b247d945fdc724 Mon Sep 17 00:00:00 2001 From: Alan Agius <17563226+alan-agius4@users.noreply.github.com> Date: Thu, 4 Dec 2025 14:55:11 +0000 Subject: [PATCH] ci: update snapshots CI workflow to use the new `build-snapshots` script Previously, in snapshots the release config was used. See: https://github.com/angular/cdk-builds/blob/8ff0017b73614e4a80bd0c3d4a7fa0fe5ef10954/package.json#L3 --- .github/workflows/ci.yml | 4 ++-- package.json | 1 + 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 0d107ec736f8..40da8344e962 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -135,8 +135,8 @@ jobs: uses: angular/dev-infra/github-actions/bazel/configure-remote@95e3a0ede6dfa1aedd34b03918ad72b18f87e5ae - name: Install node modules run: pnpm install --frozen-lockfile - - name: Build and Verify Release Output - run: pnpm build-and-check-release-output + - name: Build Snapshots + run: pnpm build-snapshots - name: Verify tooling setup run: pnpm check-tooling-setup - name: Build Docs Content diff --git a/package.json b/package.json index 2a8b7aecbf4a..3ae56981abad 100644 --- a/package.json +++ b/package.json @@ -20,6 +20,7 @@ "build": "node --no-warnings=ExperimentalWarning --loader ts-node/esm/transpile-only ./scripts/build-packages-dist-main.mts", "build-docs-content": "node --no-warnings=ExperimentalWarning --loader ts-node/esm/transpile-only ./scripts/build-docs-content-main.mts", "build-and-check-release-output": "node --no-warnings=ExperimentalWarning --loader ts-node/esm/transpile-only scripts/build-and-check-release-output.mts", + "build-snapshots": "node --no-warnings=ExperimentalWarning --loader ts-node/esm/transpile-only scripts/build-packages-dist-main.mts", "dev-app": "ibazel run //src/dev-app:devserver", "docs-app": "ibazel run //docs:serve", "universal-app": "bazel run //src/universal-app:server",