42 lines
No EOL
1.2 KiB
YAML
42 lines
No EOL
1.2 KiB
YAML
# License: LGPL-3.0-or-later
|
|
name: NOTICE-js verification
|
|
env:
|
|
node: 14.6.0
|
|
os: ubuntu-20.04
|
|
on:
|
|
push:
|
|
paths:
|
|
- yarn.lock
|
|
- package.json
|
|
- included.json
|
|
- NOTICE-js
|
|
pull_request:
|
|
paths:
|
|
- yarn.lock
|
|
- package.json
|
|
- included.json
|
|
- NOTICE-js
|
|
jobs:
|
|
notice_js:
|
|
runs-on: ubuntu-20.04
|
|
steps:
|
|
- uses: actions/checkout@v2
|
|
- uses: actions/setup-node@v1.4.4
|
|
with:
|
|
node-version: ${{ env.node }}
|
|
- name: Get yarn cache directory path
|
|
id: yarn-cache-dir-path
|
|
run: echo "::set-output name=dir::$(yarn cache dir)"
|
|
|
|
- uses: actions/cache@v2
|
|
id: yarn-cache # use this to check for `cache-hit` (`steps.yarn-cache.outputs.cache-hit != 'true'`)
|
|
with:
|
|
path: ${{ steps.yarn-cache-dir-path.outputs.dir }}
|
|
key: ${{ env.os }}-yarn-${{ env.node }}-${{ hashFiles('**/yarn.lock') }}
|
|
restore-keys: |
|
|
${{ env.os }}-yarn-${{ env.node }}-
|
|
${{ env.os }}-yarn-
|
|
- run: yarn install --frozen-lockfile
|
|
if: steps.node-cache.outputs.cache-hit != 'true'
|
|
- name: Verify NOTICE-js
|
|
run: yarn notice:js |