3PP License Check #117
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: 3PP License Check | |
on: | |
push: | |
branches: | |
- main | |
workflow_dispatch: | |
pull_request: | |
branches: | |
- main | |
schedule: | |
- cron: "0 4 * * *" # Runs every day at 4am: https://docs.github.com/en/actions/reference/events-that-trigger-workflows#scheduled-events-schedule | |
jobs: | |
License-check: | |
name: 3PP License Check using dash-licenses | |
strategy: | |
fail-fast: false | |
matrix: | |
os: [ubuntu-latest] | |
node: [20] | |
java: [11] | |
runs-on: ${{ matrix.os }} | |
timeout-minutes: 20 | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
with: | |
fetch-depth: 2 | |
- name: Use Node.js ${{ matrix.node }} | |
uses: actions/setup-node@v4 | |
with: | |
node-version: ${{ matrix.node }} | |
- name: Use Java ${{ matrix.java }} | |
uses: actions/setup-java@v4 | |
with: | |
distribution: "adopt" | |
java-version: ${{ matrix.java }} | |
- name: Run node dash-licenses | |
shell: bash | |
run: | | |
sudo apt-get install libsecret-1-dev | |
cd node | |
npm ci | |
npm run license:check | |
env: | |
DASH_TOKEN: ${{ secrets.DASH_LICENSES_PAT }} | |
- name: Run theia dash-licenses | |
shell: bash | |
run: | | |
sudo apt-get install libsecret-1-dev | |
cd theia | |
yarn --frozen-lockfile --ignore-scripts | |
yarn license:check | |
env: | |
DASH_TOKEN: ${{ secrets.DASH_LICENSES_PAT }} |