build(deps-dev): bump flatted from 3.3.3 to 3.4.2 in the npm_and_yarn group across 1 directory #16
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/[email protected] | |
| - name: Check history for merge commits | |
| uses: NexusPHP/[email protected] | |
| with: | |
| token: ${{ secrets.GITHUB_TOKEN }} |