Bump the npm_and_yarn group across 1 directory with 2 updates #6
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
# Shows changes to any yarn.lock in PR comment | |
# Useful for easily understanding dependency changes and consequences | |
name: 💡 Show Dependency Changes | |
on: [pull_request] | |
jobs: | |
check: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v2 | |
- name: Yarn Lock Changes | |
uses: Simek/yarn-lock-changes@main | |
with: | |
token: ${{ secrets.ORG_REPO_TOKEN || secrets.GITHUB_TOKEN }} | |
collapsibleThreshold: '25' | |
failOnDowngrade: 'false' | |
path: 'yarn.lock' |