@@ -44,27 +44,27 @@ jobs:
4444 run : pnpm install --frozen-lockfile
4545 - name : Generate JSON schema types
4646 # Schema types are required to correctly lint the TypeScript code
47- run : pnpm run admin build-schema
47+ run : pnpm admin build-schema
4848 - name : Run ESLint
49- run : pnpm run lint --cache-strategy content
49+ run : pnpm lint --cache-strategy content
5050 - name : Validate NgBot Configuration
51- run : pnpm run ng-dev ngbot verify
51+ run : pnpm ng-dev ngbot verify
5252 - name : Validate Circular Dependencies
53- run : pnpm run ts-circular-deps check
53+ run : pnpm ts-circular-deps check
5454 - name : Run Validation
55- run : pnpm run admin validate
55+ run : pnpm admin validate
5656 - name : Check Package Licenses
5757 uses : angular/dev-infra/github-actions/linting/licenses@f2a610b26cd7a451eddd50eb071dc495e3346a80
5858 - name : Check tooling setup
59- run : pnpm run check-tooling-setup
59+ run : pnpm check-tooling-setup
6060 - name : Check commit message
6161 # Commit message validation is only done on pull requests as its too late to validate once
6262 # it has been merged.
63- run : pnpm run ng-dev commit-message validate-range ${{ github.event.pull_request.base.sha }} ${{ github.event.pull_request.head.sha }}
63+ run : pnpm ng-dev commit-message validate-range ${{ github.event.pull_request.base.sha }} ${{ github.event.pull_request.head.sha }}
6464 - name : Check code format
6565 # Code formatting checks are only done on pull requests as its too late to validate once
6666 # it has been merged.
67- run : pnpm run ng-dev format changed --check ${{ github.event.pull_request.base.sha }}
67+ run : pnpm ng-dev format changed --check ${{ github.event.pull_request.base.sha }}
6868
6969 build :
7070 runs-on : ubuntu-latest
7878 - name : Install node modules
7979 run : pnpm install --frozen-lockfile
8080 - name : Build release targets
81- run : pnpm run ng-dev release build
81+ run : pnpm ng-dev release build
8282 - name : Store PR release packages
8383 uses : actions/upload-artifact@4cec3d8aa04e39d1a68397de0c4cd6fb9dce8ec1 # v4.6.1
8484 with :
9999 - name : Install node modules
100100 run : pnpm install --frozen-lockfile
101101 - name : Run module and package tests
102- run : pnpm run bazel test //modules/... //packages/...
102+ run : pnpm bazel test //modules/... //packages/...
103103 env :
104104 ASPECT_RULES_JS_FROZEN_PNPM_LOCK : ' 1'
105105
@@ -123,7 +123,7 @@ jobs:
123123 - name : Setup Bazel RBE
124124 uses : angular/dev-infra/github-actions/bazel/configure-remote@f2a610b26cd7a451eddd50eb071dc495e3346a80
125125 - name : Run CLI E2E tests
126- run : pnpm run bazel test --test_env=E2E_SHARD_TOTAL=6 --test_env=E2E_SHARD_INDEX=${{ matrix.shard }} --config=e2e //tests/legacy-cli:e2e.${{ matrix.subset }}_node${{ matrix.node }}
126+ run : pnpm bazel test --test_env=E2E_SHARD_TOTAL=6 --test_env=E2E_SHARD_INDEX=${{ matrix.shard }} --config=e2e //tests/legacy-cli:e2e.${{ matrix.subset }}_node${{ matrix.node }}
127127
128128 e2e-windows-subset :
129129 needs : build
@@ -157,7 +157,7 @@ jobs:
157157 - name : Setup Bazel RBE
158158 uses : angular/dev-infra/github-actions/bazel/configure-remote@f2a610b26cd7a451eddd50eb071dc495e3346a80
159159 - name : Run CLI E2E tests
160- run : pnpm run bazel test --test_env=E2E_SHARD_TOTAL=3 --test_env=E2E_SHARD_INDEX=${{ matrix.shard }} --config=e2e //tests/legacy-cli:e2e.${{ matrix.subset }}_node${{ matrix.node }}
160+ run : pnpm bazel test --test_env=E2E_SHARD_TOTAL=3 --test_env=E2E_SHARD_INDEX=${{ matrix.shard }} --config=e2e //tests/legacy-cli:e2e.${{ matrix.subset }}_node${{ matrix.node }}
161161
162162 e2e-snapshots :
163163 needs : [analyze, build]
@@ -180,4 +180,4 @@ jobs:
180180 - name : Setup Bazel RBE
181181 uses : angular/dev-infra/github-actions/bazel/configure-remote@f2a610b26cd7a451eddd50eb071dc495e3346a80
182182 - name : Run CLI E2E tests
183- run : pnpm run bazel test --test_env=E2E_SHARD_TOTAL=6 --test_env=E2E_SHARD_INDEX=${{ matrix.shard }} --config=e2e //tests/legacy-cli:e2e.snapshots.${{ matrix.subset }}_node${{ matrix.node }}
183+ run : pnpm bazel test --test_env=E2E_SHARD_TOTAL=6 --test_env=E2E_SHARD_INDEX=${{ matrix.shard }} --config=e2e //tests/legacy-cli:e2e.snapshots.${{ matrix.subset }}_node${{ matrix.node }}
0 commit comments