2020-08-12 07:48:13 +07:00
|
|
|
name: Licensed
|
|
|
|
|
|
|
|
on:
|
2021-08-25 22:29:43 +07:00
|
|
|
push:
|
|
|
|
branches:
|
|
|
|
- main
|
|
|
|
pull_request:
|
|
|
|
branches:
|
|
|
|
- main
|
2021-12-23 18:35:09 +07:00
|
|
|
workflow_dispatch:
|
2020-08-12 07:48:13 +07:00
|
|
|
|
|
|
|
jobs:
|
|
|
|
test:
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
name: Check licenses
|
|
|
|
steps:
|
2022-04-01 20:48:47 +07:00
|
|
|
- uses: actions/checkout@v3
|
2022-07-25 10:07:37 +07:00
|
|
|
- run: npm ci --ignore-scripts
|
2020-08-12 07:48:13 +07:00
|
|
|
- name: Install licensed
|
|
|
|
run: |
|
|
|
|
cd $RUNNER_TEMP
|
2022-02-24 15:16:01 +07: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-08-12 07:48:13 +07:00
|
|
|
sudo tar -xzf licensed.tar.gz
|
|
|
|
sudo mv licensed /usr/local/bin/licensed
|
2021-08-25 22:29:43 +07:00
|
|
|
- run: licensed status
|