This repository was archived by the owner on Oct 22, 2025. It is now read-only.
build(deps): update linters (major) #506
This file contains hidden or 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: Yarn | |
| on: [pull_request] | |
| jobs: | |
| yarn_lock_changes: | |
| name: Lock File Changes | |
| runs-on: ubuntu-latest | |
| # Permission overwrite is required for Dependabot PRs | |
| permissions: | |
| pull-requests: write | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v5 | |
| - name: Digest Lock File | |
| uses: Simek/yarn-lock-changes@875697ea31fe8cd00b706af8984db1c61b50b6ee | |
| with: | |
| token: ${{ secrets.GITHUB_TOKEN }} | |
| collapsibleThreshold: 25 | |
| failOnDowngrade: false | |
| path: yarn.lock | |
| updateComment: true |