diff --git a/.github/workflows/commit-message-lint.yml b/.github/workflows/commit-message-lint.yml index b40a00267..10803fefe 100644 --- a/.github/workflows/commit-message-lint.yml +++ b/.github/workflows/commit-message-lint.yml @@ -1,28 +1,28 @@ name: Lint Commit Messages -on: +on: push: branches: - main pull_request: -cjobs: +jobs: commitlint: runs-on: ubuntu-latest steps: - - name: Check out the repository - uses: actions/checkout@v2 - with: - fetch-depth: 0 # Ensures commit history is pulled + - name: Check out the repository + uses: actions/checkout@v2 + with: + fetch-depth: 0 # Ensures commit history is pulled - - name: Install Node.js - uses: actions/setup-node@v2 - with: - node-version: 'lts/*' + - name: Install Node.js + uses: actions/setup-node@v2 + with: + node-version: 'lts/*' - - name: Install Dependencies - run: yarn install + - name: Install Dependencies + run: yarn install - - name: Lint Commit Messages - run: npx commitlint --from=HEAD~1 --to=HEAD --verbose + - name: Lint Commit Messages + run: npx commitlint --from=HEAD~1 --to=HEAD --verbose