feat: improve XDM messenger developer experience #341
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: PR Title Check | |
| on: | |
| pull_request: | |
| types: [opened, edited, synchronize, reopened] | |
| jobs: | |
| validate: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v3 | |
| with: | |
| fetch-depth: 0 | |
| - name: Setup Node.js | |
| uses: actions/setup-node@v2 | |
| with: | |
| node-version: '18' | |
| - name: Enable Corepack | |
| run: corepack enable | |
| - name: Set Yarn version to Berry | |
| run: corepack prepare [email protected] --activate | |
| - name: Install Dependencies | |
| run: yarn add @commitlint/config-conventional -D | |
| - name: Check PR Title | |
| uses: JulienKode/[email protected] | |
| with: | |
| configuration-path: ./commitlint.config.js # Uses the same config as commit messages |