chore(deps): update dependency vitest to v1.6.1 [security] #289
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: Conventional Tools Commitlint | |
| on: | |
| push: { branches: ["2.x"] } | |
| pull_request: { branches: ["2.x"] } | |
| jobs: | |
| commits: | |
| name: Commitlint | |
| runs-on: ubuntu-latest | |
| container: practically/conventional-tools:1.x@sha256:647d6e4b3edfcbac6054b90f74d2c61a022152751b94484d54e13695a9e27377 | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v3 | |
| with: {fetch-depth: 1000} | |
| - name: Git safe.directory | |
| run: git config --global --add safe.directory $PWD | |
| - name: Lint commits | |
| run: conventional-tools commitlint -l1 |