Add manual release CI workflow #2
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-workflows | |
| on: | |
| push: | |
| branches-ignore: | |
| - 'development/**' | |
| paths: | |
| - '.github/workflows/**' | |
| - 'tests/workflows/**' | |
| jobs: | |
| test-workflows: | |
| runs-on: ubuntu-22.04 | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v4 | |
| - name: Install NodeJS | |
| uses: actions/setup-node@v4 | |
| with: | |
| node-version: '24' | |
| cache: yarn | |
| cache-dependency-path: tests/workflows/yarn.lock | |
| - name: Install dependencies | |
| run: yarn --cwd tests/workflows install --frozen-lockfile | |
| - name: Run workflow tests | |
| run: yarn --cwd tests/workflows test |