chore: updated license #193
Workflow file for this run
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
--- | |
name: Commitlint | |
on: | |
push: | |
branches-ignore: | |
- 'master' | |
jobs: | |
commitlint: | |
runs-on: ubuntu-22.04 | |
timeout-minutes: 5 | |
env: | |
CI: 'true' | |
steps: | |
- uses: actions/checkout@v3 | |
with: | |
fetch-depth: 0 | |
- uses: actions/setup-node@v3 | |
with: | |
node-version: 20 | |
cache: npm | |
- run: make install | |
- name: Commitlint | |
run: npx commitlint --color --verbose --from $(git merge-base origin/master HEAD) |