fix: date only required for dynamic perforations with everest-models 3.0.0 #365
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: 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 |