build(deps): bump the npm_and_yarn group with 14 updates #491
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Licensed | |
on: | |
push: | |
branches: | |
- '**' | |
pull_request: | |
branches: | |
- '**' | |
jobs: | |
licensed: | |
runs-on: ubuntu-latest | |
name: Check licenses | |
steps: | |
- name: Check out code into the Go module directory | |
uses: actions/checkout@v2 | |
- name: Install dependencies | |
run: npm install --production | |
- name: Set up licensed | |
uses: jonabc/setup-licensed@v1 | |
with: | |
version: '2.x' | |
- name: List licenses | |
run: licensed list | |
- name: Check license status | |
run: licensed status |