Skip to content

Commit 48058ff

Browse files
authored
build: move license check to lint job (#30489)
The license check was in the API golden job which seems unintentional. These changes move it into the lint job.
1 parent 2fb7836 commit 48058ff

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.github/workflows/pr.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -44,6 +44,8 @@ jobs:
4444
run: yarn -s ts-circular-deps:check
4545
- name: Check code format
4646
run: yarn ng-dev format changed --check ${{ github.event.pull_request.base.sha }}
47+
- name: Check Package Licenses
48+
uses: angular/dev-infra/github-actions/linting/licenses@8a438a3bdc519880d78b5ac92b62bfe688deb058
4749
# Commit message check is last intentionally, because the caretaker can fix it
4850
# during merge, while other lint failures have to be resolved by the PR author.
4951
- name: Check commit message
@@ -64,8 +66,6 @@ jobs:
6466
run: yarn install --frozen-lockfile
6567
- name: Check API Goldens
6668
run: yarn bazel test tools/public_api_guard/...
67-
- name: Check Package Licenses
68-
uses: angular/dev-infra/github-actions/linting/licenses@8a438a3bdc519880d78b5ac92b62bfe688deb058
6969

7070
e2e:
7171
runs-on: ubuntu-latest

0 commit comments

Comments
 (0)