houdini/.github/workflows/notice_js.yml

42 lines
1.2 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
os: ubuntu-20.04
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-20.04
2020-10-25 04:56:04 +00:00
steps:
- uses: actions/checkout@v2
2020-11-18 17:12:10 +00:00
- uses: actions/setup-node@v1.4.4
2020-10-25 04:56:04 +00:00
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: ${{ env.os }}-yarn-${{ env.node }}-${{ hashFiles('**/yarn.lock') }}
2020-10-25 04:56:04 +00:00
restore-keys: |
${{ env.os }}-yarn-${{ env.node }}-
${{ env.os }}-yarn-
2020-10-25 04:56:04 +00:00
- run: yarn install --frozen-lockfile
2020-10-25 18:40:30 +00:00
if: steps.node-cache.outputs.cache-hit != 'true'
2020-10-25 04:56:04 +00:00
- name: Verify NOTICE-js
run: yarn notice:js