houdini/.github/workflows/notice_js.yml

39 lines
1.1 KiB
YAML
Raw Normal View History

2020-10-25 04:56:04 +00:00
# License: LGPL-3.0-or-later
name: NOTICE-js verification
env:
node: 14.6.0
2020-10-25 04:56:04 +00:00
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-latest
steps:
- uses: actions/checkout@v2
- uses: actions/setup-node@v1.4.2
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'`)
2020-10-25 04:56:04 +00:00
with:
path: ${{ steps.yarn-cache-dir-path.outputs.dir }}
key: ${{ runner.os }}-yarn-${{ env.node }}-${{ hashFiles('**/yarn.lock') }}
2020-10-25 04:56:04 +00:00
restore-keys: |
${{ runner.os }}-yarn-${{ env.node }}-
2020-10-25 04:56:04 +00:00
- run: yarn install --frozen-lockfile
- name: Verify NOTICE-js
run: yarn notice:js