Skip to content

ci: pack and re-scope for GitHub Packages without mutating source pac… #138

ci: pack and re-scope for GitHub Packages without mutating source pac…

ci: pack and re-scope for GitHub Packages without mutating source pac… #138

Workflow file for this run

name: Validate
on:
push:
pull_request:
permissions:
contents: read
jobs:
quality:
strategy:
fail-fast: false
matrix:
os: [ubuntu-latest, windows-latest]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: "22"
cache: "npm"
- uses: actions/setup-python@v5
with:
python-version: "3.12"
- name: Install dependencies
run: npm ci
- name: Install Python dependencies
run: node scripts/run_python.mjs -m pip install --disable-pip-version-check -r skills/omv-report/scripts/requirements.txt
- name: Validate project
run: npm run release:check