test: remove disable_komodo call which is not available (#130) #430
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: commit lint | |
| on: | |
| workflow_dispatch: | |
| workflow_call: | |
| push: | |
| pull_request: | |
| jobs: | |
| commitlint: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: checkout code | |
| uses: actions/checkout@v4 | |
| with: | |
| fetch-depth: 0 | |
| - name: setup node.js | |
| uses: actions/setup-node@v4 | |
| with: | |
| node-version: 18 | |
| - name: install commitlint | |
| run: npm install @commitlint/{cli,config-conventional} | |
| - name: run commitlint | |
| run: npx commitlint --from=$(git merge-base origin/main HEAD) --to=HEAD |