@@ -44,27 +44,27 @@ jobs:
44
44
run : pnpm install --frozen-lockfile
45
45
- name : Generate JSON schema types
46
46
# Schema types are required to correctly lint the TypeScript code
47
- run : pnpm run admin build-schema
47
+ run : pnpm admin build-schema
48
48
- name : Run ESLint
49
- run : pnpm run lint --cache-strategy content
49
+ run : pnpm lint --cache-strategy content
50
50
- name : Validate NgBot Configuration
51
- run : pnpm run ng-dev ngbot verify
51
+ run : pnpm ng-dev ngbot verify
52
52
- name : Validate Circular Dependencies
53
- run : pnpm run ts-circular-deps check
53
+ run : pnpm ts-circular-deps check
54
54
- name : Run Validation
55
- run : pnpm run admin validate
55
+ run : pnpm admin validate
56
56
- name : Check Package Licenses
57
57
uses : angular/dev-infra/github-actions/linting/licenses@f2a610b26cd7a451eddd50eb071dc495e3346a80
58
58
- name : Check tooling setup
59
- run : pnpm run check-tooling-setup
59
+ run : pnpm check-tooling-setup
60
60
- name : Check commit message
61
61
# Commit message validation is only done on pull requests as its too late to validate once
62
62
# 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 }}
64
64
- name : Check code format
65
65
# Code formatting checks are only done on pull requests as its too late to validate once
66
66
# 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 }}
68
68
69
69
build :
70
70
runs-on : ubuntu-latest
78
78
- name : Install node modules
79
79
run : pnpm install --frozen-lockfile
80
80
- name : Build release targets
81
- run : pnpm run ng-dev release build
81
+ run : pnpm ng-dev release build
82
82
- name : Store PR release packages
83
83
uses : actions/upload-artifact@4cec3d8aa04e39d1a68397de0c4cd6fb9dce8ec1 # v4.6.1
84
84
with :
99
99
- name : Install node modules
100
100
run : pnpm install --frozen-lockfile
101
101
- name : Run module and package tests
102
- run : pnpm run bazel test //modules/... //packages/...
102
+ run : pnpm bazel test //modules/... //packages/...
103
103
env :
104
104
ASPECT_RULES_JS_FROZEN_PNPM_LOCK : ' 1'
105
105
@@ -123,7 +123,7 @@ jobs:
123
123
- name : Setup Bazel RBE
124
124
uses : angular/dev-infra/github-actions/bazel/configure-remote@f2a610b26cd7a451eddd50eb071dc495e3346a80
125
125
- 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 }}
127
127
128
128
e2e-windows-subset :
129
129
needs : build
@@ -157,7 +157,7 @@ jobs:
157
157
- name : Setup Bazel RBE
158
158
uses : angular/dev-infra/github-actions/bazel/configure-remote@f2a610b26cd7a451eddd50eb071dc495e3346a80
159
159
- 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 }}
161
161
162
162
e2e-snapshots :
163
163
needs : [analyze, build]
@@ -180,4 +180,4 @@ jobs:
180
180
- name : Setup Bazel RBE
181
181
uses : angular/dev-infra/github-actions/bazel/configure-remote@f2a610b26cd7a451eddd50eb071dc495e3346a80
182
182
- 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