chore: yarn (deps-dev): bump @types/node from 25.9.2 to 26.1.1 #8
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: Fast Forward Check | |
| on: | |
| pull_request: | |
| types: [opened, reopened, synchronize] | |
| jobs: | |
| security-check: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - uses: gensecaihq/Shai-Hulud-2.0-Detector@v2 | |
| with: | |
| fail-on-any: true | |
| check-ci: | |
| runs-on: ubuntu-latest | |
| permissions: | |
| contents: read | |
| steps: | |
| - uses: actions/checkout@v4 | |
| with: | |
| fetch-depth: 0 | |
| - name: Setup Node.js | |
| uses: actions/setup-node@v4 | |
| with: | |
| node-version: '24' | |
| - name: Install dependencies | |
| run: yarn install --frozen-lockfile | |
| - name: Run CI checks | |
| run: yarn ci | |
| check-fast-forward: | |
| runs-on: ubuntu-latest | |
| permissions: | |
| contents: read | |
| # We appear to need write permission for both pull-requests and | |
| # issues in order to post a comment to a pull request. | |
| pull-requests: write | |
| issues: write | |
| steps: | |
| - name: Checking if fast forwarding is possible | |
| uses: sequoia-pgp/fast-forward@v1 | |
| with: | |
| merge: false | |
| # To reduce the workflow's verbosity, use 'on-error' | |
| # to only post a comment when an error occurs, or 'never' to | |
| # never post a comment. (In all cases the information is | |
| # still available in the step's summary.) | |
| comment: 'on-error' | |
| dependabot: | |
| runs-on: ubuntu-latest | |
| if: github.event.pull_request.user.login == 'dependabot[bot]' | |
| permissions: | |
| contents: write | |
| pull-requests: write | |
| steps: | |
| - name: Auto approve PR | |
| run: gh pr review --approve "$PR_URL" | |
| env: | |
| PR_URL: ${{ github.event.pull_request.html_url }} | |
| GH_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
| - name: Dependabot metadata | |
| id: metadata | |
| uses: dependabot/fetch-metadata@d7267f607e9d3fb96fc2fbe83e0af444713e90b7 | |
| with: | |
| github-token: '${{ secrets.GITHUB_TOKEN }}' | |
| - name: Enable auto-merge for Dependabot PRs | |
| if: steps.metadata.outputs.update-type == 'version-update:semver-patch' || steps.metadata.outputs.update-type == 'version-update:semver-minor' | |
| run: gh pr merge --auto --squash "$PR_URL" | |
| env: | |
| PR_URL: ${{github.event.pull_request.html_url}} | |
| GH_TOKEN: ${{secrets.GITHUB_TOKEN}} |