2020-09-10 14:23:54 +01:00
|
|
|
name: Licensed
|
|
|
|
|
|
|
|
on:
|
2021-08-25 16:29:51 +01:00
|
|
|
push:
|
|
|
|
branches:
|
|
|
|
- main
|
|
|
|
pull_request:
|
|
|
|
branches:
|
|
|
|
- main
|
2020-09-10 14:23:54 +01:00
|
|
|
|
|
|
|
jobs:
|
|
|
|
test:
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
name: Check licenses
|
|
|
|
steps:
|
2022-04-01 09:13:52 +01:00
|
|
|
- uses: actions/checkout@v3
|
2020-09-10 14:23:54 +01:00
|
|
|
- run: npm ci
|
|
|
|
- name: Install licensed
|
|
|
|
run: |
|
|
|
|
cd $RUNNER_TEMP
|
2022-02-24 11:42:19 +00: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-10 14:23:54 +01:00
|
|
|
sudo tar -xzf licensed.tar.gz
|
|
|
|
sudo mv licensed /usr/local/bin/licensed
|
2021-08-25 16:29:51 +01:00
|
|
|
- run: licensed status
|