build(deps): bump rollup from 4.52.4 to 4.59.0 #12
Workflow file for this run
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: Prevent merge commits | |
| # Searches the git history for merge commits and fails when such commits are | |
| # found. We do not tolerate merge commits as they make the git history less | |
| # readable. | |
| on: | |
| pull_request: | |
| branches: [main, master, release, development] | |
| types: [opened, synchronize, reopened] | |
| jobs: | |
| check-history-for-merge-commits: | |
| name: Check history for merge commits | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout repository | |
| uses: actions/checkout@v4.3.0 | |
| - name: Check history for merge commits | |
| uses: NexusPHP/no-merge-commits@v2.2.1 | |
| with: | |
| token: ${{ secrets.GITHUB_TOKEN }} |