2020-09-23 17:22:43 -04:00
|
|
|
name: Licensed
|
|
|
|
|
|
|
|
on:
|
2021-08-25 11:47:15 -04:00
|
|
|
push:
|
|
|
|
branches:
|
|
|
|
- main
|
|
|
|
pull_request:
|
|
|
|
branches:
|
|
|
|
- main
|
2020-09-23 17:22:43 -04:00
|
|
|
|
|
|
|
jobs:
|
|
|
|
test:
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
name: Check licenses
|
|
|
|
steps:
|
|
|
|
- uses: actions/checkout@v2
|
2022-02-25 04:31:18 -05:00
|
|
|
- name: Set Node.js 16.x
|
2022-04-07 06:16:24 -04:00
|
|
|
uses: actions/setup-node@v3
|
2022-02-01 06:17:23 -05:00
|
|
|
with:
|
2022-02-25 04:31:18 -05:00
|
|
|
node-version: 16.x
|
2022-04-07 06:16:24 -04:00
|
|
|
cache: npm
|
2020-09-23 17:22:43 -04:00
|
|
|
- run: npm ci
|
|
|
|
- name: Install licensed
|
|
|
|
run: |
|
|
|
|
cd $RUNNER_TEMP
|
2022-02-25 04:31:18 -05: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 17:22:43 -04:00
|
|
|
sudo tar -xzf licensed.tar.gz
|
|
|
|
sudo mv licensed /usr/local/bin/licensed
|
2021-08-25 11:47:15 -04:00
|
|
|
- run: licensed status
|