feat(testing): add cdn test setup with pixi #97
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
| # Copyright (c) 2025 Columnar Technologies. All rights reserved. | |
| name: Dev PR | |
| on: | |
| pull_request_target: | |
| types: [opened, edited, synchronize, ready_for_review, review_requested] | |
| permissions: | |
| contents: read | |
| pull-requests: read | |
| jobs: | |
| check-pr-title: | |
| name: Check PR Title | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: Setup Node.js | |
| uses: actions/setup-node@v4 | |
| with: | |
| node-version: '18' | |
| - name: Install commitlint | |
| run: | | |
| npm install @commitlint/cli @commitlint/config-conventional | |
| - name: Check PR title follows conventional commits spec | |
| run: | | |
| echo "${{ github.event.pull_request.title }}" | npx commitlint --extends @commitlint/config-conventional |