2020-09-23 23:23:32 +02:00
|
|
|
name: Licensed
|
|
|
|
|
|
|
|
on:
|
2021-09-13 11:52:18 +02:00
|
|
|
push:
|
|
|
|
branches:
|
|
|
|
- main
|
|
|
|
pull_request:
|
|
|
|
branches:
|
|
|
|
- main
|
2021-12-08 20:04:47 +01:00
|
|
|
workflow_dispatch:
|
2020-09-23 23:23:32 +02:00
|
|
|
|
|
|
|
jobs:
|
|
|
|
test:
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
name: Check licenses
|
|
|
|
steps:
|
|
|
|
- uses: actions/checkout@v2
|
|
|
|
- run: npm ci
|
|
|
|
- name: Install licensed
|
|
|
|
run: |
|
|
|
|
cd $RUNNER_TEMP
|
2022-02-24 12:42:37 +01:00
|
|
|
curl -Lfs -o licensed.tar.gz https://github.com/github/licensed/releases/download/3.4.4/licensed-3.4.4-linux-x64.tar.gz
|
2020-09-23 23:23:32 +02:00
|
|
|
sudo tar -xzf licensed.tar.gz
|
|
|
|
sudo mv licensed /usr/local/bin/licensed
|
2021-09-13 11:52:18 +02:00
|
|
|
- run: licensed status
|