Welcome to the future #102
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: Check Release Consistency | |
| on: | |
| push: | |
| branches: [main] | |
| pull_request: | |
| branches: [main] | |
| jobs: | |
| check-version-alignment: | |
| runs-on: ubuntu-latest | |
| name: Verify version alignment across manifests | |
| steps: | |
| - name: Checkout repository | |
| uses: actions/checkout@v4 | |
| - name: Setup Node.js | |
| uses: actions/setup-node@v6 | |
| with: | |
| node-version: '18' | |
| - name: Check release consistency | |
| run: node scripts/check-release-consistency.js | |
| - name: ✅ All versions aligned | |
| if: success() | |
| run: echo "Release manifests are consistent" |