From fee371a9155d788f9cfd20d2516c0334211dac69 Mon Sep 17 00:00:00 2001 From: Kristiyan Kostadinov Date: Thu, 13 Feb 2025 14:12:59 +0100 Subject: [PATCH] build: move license check to lint job The license check was in the API golden job which seems unintentional. These changes move it into the lint job. --- .github/workflows/pr.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/pr.yml b/.github/workflows/pr.yml index 476373ed14f8..eb25798036f3 100644 --- a/.github/workflows/pr.yml +++ b/.github/workflows/pr.yml @@ -44,6 +44,8 @@ jobs: run: yarn -s ts-circular-deps:check - name: Check code format run: yarn ng-dev format changed --check ${{ github.event.pull_request.base.sha }} + - name: Check Package Licenses + uses: angular/dev-infra/github-actions/linting/licenses@8a438a3bdc519880d78b5ac92b62bfe688deb058 # Commit message check is last intentionally, because the caretaker can fix it # during merge, while other lint failures have to be resolved by the PR author. - name: Check commit message @@ -64,8 +66,6 @@ jobs: run: yarn install --frozen-lockfile - name: Check API Goldens run: yarn bazel test tools/public_api_guard/... - - name: Check Package Licenses - uses: angular/dev-infra/github-actions/linting/licenses@8a438a3bdc519880d78b5ac92b62bfe688deb058 e2e: runs-on: ubuntu-latest