Configure Action for Node.js 20 support and upgrade dependencies #53
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
# Updates the license cache, then checks that all dependencies have licenses specified in .licensed.yml | |
# Uses https://github.com/jonabc/licensed-ci | |
name: Check and Update Licenses Status | |
on: | |
push: | |
branches: | |
- main | |
pull_request: | |
branches: | |
- main | |
jobs: | |
licensed: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- run: npm install --production | |
- uses: jonabc/setup-licensed@v1 | |
with: | |
version: 3.x | |
- id: licensed | |
uses: jonabc/licensed-ci@v1 | |
with: | |
workflow: branch | |
github_token: ${{ secrets.GITHUB_TOKEN }} |