Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

is verification no longer running?

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

It's not part of the snapshots build process. It's part of pnpm build-and-check-release-output which is run as part of other steps.

Copy link
Contributor Author

@alan-agius4 alan-agius4 Dec 4, 2025

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

run: pnpm build-snapshots
- name: Verify tooling setup
run: pnpm check-tooling-setup
- name: Build Docs Content
Expand Down
1 change: 1 addition & 0 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -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",
Expand Down
Loading