Update Connector Element Template Links - March 2026 #18159
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: check-format | |
| on: [pull_request] | |
| jobs: | |
| check-format: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v6 | |
| - uses: actions/setup-node@v6 | |
| with: | |
| node-version: 24 | |
| - name: Install Dependencies | |
| run: npm ci | |
| - name: Verify format with Vale | |
| uses: errata-ai/vale-action@v2.1.1 | |
| with: | |
| filter_mode: added | |
| reporter: github-pr-review | |
| version: 3.9.6 | |
| - name: Verify format with Prettier | |
| uses: camunda/reviewdog-action-prettier@main | |
| with: | |
| github_token: ${{ secrets.github_token }} | |
| reporter: github-pr-review | |
| fail_on_error: true |