2022-04-26 14:09:42 -04:00
|
|
|
name: Licenses
|
|
|
|
|
|
|
|
on:
|
|
|
|
pull_request:
|
|
|
|
push:
|
|
|
|
branches:
|
|
|
|
- main
|
|
|
|
|
2022-04-28 09:51:48 -04:00
|
|
|
concurrency:
|
|
|
|
group: licenses-${{ format('{0}-{1}', github.head_ref || github.run_number, github.job) }}
|
|
|
|
cancel-in-progress: true
|
|
|
|
|
2022-07-30 11:22:03 -04:00
|
|
|
permissions:
|
|
|
|
contents: read
|
|
|
|
|
2022-04-26 14:09:42 -04:00
|
|
|
jobs:
|
|
|
|
build:
|
2022-12-21 11:52:35 -05:00
|
|
|
if: "!(github.event_name == 'push' && github.repository == 'discourse/discourse-private-mirror')"
|
2022-04-26 14:09:42 -04:00
|
|
|
name: run
|
|
|
|
runs-on: ubuntu-latest
|
2022-04-28 09:51:48 -04:00
|
|
|
container: discourse/discourse_test:slim
|
|
|
|
timeout-minutes: 10
|
2022-04-26 14:09:42 -04:00
|
|
|
|
|
|
|
steps:
|
2022-04-28 09:51:48 -04:00
|
|
|
- uses: actions/checkout@v3
|
2022-04-26 14:09:42 -04:00
|
|
|
with:
|
|
|
|
fetch-depth: 1
|
|
|
|
|
|
|
|
- name: Setup Git
|
|
|
|
run: |
|
|
|
|
git config --global user.email "ci@ci.invalid"
|
|
|
|
git config --global user.name "Discourse CI"
|
|
|
|
|
|
|
|
- name: Bundler cache
|
2022-04-28 09:51:48 -04:00
|
|
|
uses: actions/cache@v3
|
2022-04-26 14:09:42 -04:00
|
|
|
with:
|
|
|
|
path: vendor/bundle
|
|
|
|
key: ${{ runner.os }}-gem-${{ hashFiles('**/Gemfile.lock') }}
|
|
|
|
restore-keys: |
|
|
|
|
${{ runner.os }}-gem-
|
|
|
|
|
|
|
|
- name: Setup gems
|
|
|
|
run: |
|
|
|
|
bundle config --local path vendor/bundle
|
|
|
|
bundle config --local deployment true
|
|
|
|
bundle config --local without development
|
|
|
|
bundle install --jobs 4
|
|
|
|
bundle clean
|
|
|
|
|
|
|
|
- name: Setup licensed
|
|
|
|
run: |
|
2022-10-18 08:34:44 -04:00
|
|
|
gem install licensed
|
2022-04-26 14:09:42 -04:00
|
|
|
|
|
|
|
- name: Get yarn cache directory
|
|
|
|
id: yarn-cache-dir
|
2022-11-11 08:12:08 -05:00
|
|
|
run: echo "dir=$(yarn cache dir)" >> $GITHUB_OUTPUT
|
2022-04-26 14:09:42 -04:00
|
|
|
|
|
|
|
- name: Yarn cache
|
2022-04-28 09:51:48 -04:00
|
|
|
uses: actions/cache@v3
|
2022-04-26 14:09:42 -04:00
|
|
|
id: yarn-cache
|
|
|
|
with:
|
|
|
|
path: ${{ steps.yarn-cache-dir.outputs.dir }}
|
|
|
|
key: ${{ runner.os }}-yarn-${{ hashFiles('**/yarn.lock') }}
|
|
|
|
restore-keys: |
|
|
|
|
${{ runner.os }}-yarn-
|
|
|
|
|
|
|
|
- name: Check RubyGems Licenses
|
2022-09-21 09:32:21 -04:00
|
|
|
if: ${{ !cancelled() }}
|
2022-04-26 14:09:42 -04:00
|
|
|
run: |
|
|
|
|
licensed cache
|
|
|
|
licensed status
|
|
|
|
|
|
|
|
- name: Yarn install
|
|
|
|
run: yarn install
|
|
|
|
|
|
|
|
- name: Check Yarn Licenses
|
2022-09-21 09:32:21 -04:00
|
|
|
if: ${{ !cancelled() }}
|
2022-04-26 14:09:42 -04:00
|
|
|
run: |
|
2022-04-28 09:51:48 -04:00
|
|
|
yarn global add licensee
|
2022-05-03 13:06:19 -04:00
|
|
|
yarn global upgrade licensee
|
|
|
|
licensee --errors-only
|
|
|
|
|
|
|
|
- name: Check Ember CLI Workspace Licenses
|
2022-09-21 09:32:21 -04:00
|
|
|
if: ${{ !cancelled() }}
|
2022-05-03 13:06:19 -04:00
|
|
|
working-directory: ./app/assets/javascripts
|
|
|
|
run: |
|
2022-04-28 09:51:48 -04:00
|
|
|
licensee --errors-only
|