fix: prompt to run mix deps.get if deps are out of sync on start #15
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: Lint Commit | |
on: | |
pull_request: | |
types: | |
- opened | |
- reopened | |
- synchronize | |
- edited | |
jobs: | |
commitlint: | |
runs-on: ubuntu-latest | |
name: commitlint | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Install Deps | |
run: yarn install | |
- name: Lint PR Title | |
run: echo "${{ github.event.pull_request.title }}" | yarn commitlint |