Skip to content

Commit

Permalink
Split license check per package
Browse files Browse the repository at this point in the history
  • Loading branch information
xjunior committed May 13, 2024
1 parent bf5c7e7 commit 2a9164c
Showing 1 changed file with 16 additions and 3 deletions.
19 changes: 16 additions & 3 deletions .github/workflows/audiences-multi.yml
Original file line number Diff line number Diff line change
Expand Up @@ -70,10 +70,23 @@ jobs:
workdir: audiences
ruby: ${{ matrix.ruby }}
gemfile: ${{ matrix.gemfile }}
license_check:
license_check-bundler:
runs-on: ubuntu-latest
name: Check for unapproved licenses
name: Check for Bundler unapproved licenses
steps:
- name: Checkout the code
uses: actions/checkout@v4
- uses: ralexander-phi/license_approval@master
- uses: ralexander-phi/license_approval@master
with:
working_directory: audiences
extra_flags: --enabled-package-managers=bundler
license_check-npm:
runs-on: ubuntu-latest
name: Check for NPM unapproved licenses
steps:
- name: Checkout the code
uses: actions/checkout@v4
- uses: ralexander-phi/license_approval@master
with:
working_directory: audiences-react
extra_flags: --enabled-package-managers=npm

0 comments on commit 2a9164c

Please sign in to comment.