Notebook: reinstate PCA and sort out various UX issues #3563
Workflow file for this run
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # Ensure that affected projects build without error for any pull request | |
| # | |
| # Note: We only run compile:check, which has dependsOn: ["^build-npm-modules"] configured | |
| # in nx.json. This means NX automatically builds all dependencies before running the check. | |
| # Any libraries that aren't dependencies of the site packages won't be built or checked. | |
| name: CI | |
| on: pull_request | |
| permissions: read-all | |
| jobs: | |
| main: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| with: | |
| fetch-depth: 0 | |
| - uses: actions/setup-node@v4 | |
| with: | |
| node-version: '24.11.0' | |
| - run: corepack enable | |
| - uses: actions/cache@v4 | |
| with: | |
| path: | | |
| .yarn/cache | |
| .yarn/install-state.gz | |
| key: ${{ runner.os }}-yarn-${{ hashFiles('yarn.lock') }} | |
| restore-keys: | | |
| ${{ runner.os }}-yarn- | |
| - uses: nrwl/nx-set-shas@v4 | |
| - run: yarn | |
| - run: yarn nx affected --target=compile:check |