chore: bump fuse.js from 6.6.2 to 7.1.0 #1458
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
# Will lint commits only on pull requests. It should be possible to use an old codebase which does | |
# not follow a commit convention. | |
name: Commit Convention Check | |
on: | |
pull_request: | |
branches: [main] | |
types: [opened, synchronize, reopened] | |
jobs: | |
commitlint: | |
continue-on-error: true | |
name: Validate all Commit Messages | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
with: | |
fetch-depth: 0 | |
- name: Setup Node | |
uses: actions/setup-node@v3 | |
with: | |
node-version: '16.x' | |
cache: 'npm' | |
- name: Install dependencies | |
run: npm ci | |
- name: Validate all commits from PR | |
run: 'npx commitlint --from ${{ github.event.pull_request.base.sha }} --to ${{ github.event.pull_request.head.sha }} --verbose' | |
pr-title: | |
name: Validate PR title | |
runs-on: ubuntu-latest | |
steps: | |
- uses: amannn/action-semantic-pull-request@v3.4.6 | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} |