diff --git a/.github/workflows/check-licenses.yml b/.github/workflows/check-licenses.yml deleted file mode 100644 index b11b39d..0000000 --- a/.github/workflows/check-licenses.yml +++ /dev/null @@ -1,23 +0,0 @@ -name: Check Licenses -on: - push: - branches: ['main'] - pull_request: - branches: ['**'] - -concurrency: - group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }} - cancel-in-progress: true - -jobs: - check_licenses: - name: Check Licenses - runs-on: ubuntu-latest - steps: - - name: Checkout - uses: actions/checkout@v4 - - name: Base Setup - uses: jupyterlab/maintainer-tools/.github/actions/base-setup@v1 - - - name: Check Licenses - run: yarn check-licenses diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 794c779..297ffd0 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -32,3 +32,15 @@ jobs: - name: Run qlty code smells analysis run: qlty smells + + license-check: + name: License Check + runs-on: ubuntu-latest + steps: + - name: Checkout + uses: actions/checkout@v4 + - name: Base Setup + uses: jupyterlab/maintainer-tools/.github/actions/base-setup@v1 + + - name: Check licenses + run: yarn check-licenses