Skip to content

Add manual release CI workflow #2

Add manual release CI workflow

Add manual release CI workflow #2

---
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