test: CI integration

This commit is contained in:
Vlad Stan
2026-07-07 18:32:54 +03:00
parent 120cf735c8
commit 92570c80ed
2 changed files with 15 additions and 1 deletions
+7
View File
@@ -15,6 +15,10 @@ on:
description: "python version"
type: string
default: "3.12"
playwright-browser:
description: "Playwright browser to install before running make"
default: ""
type: string
jobs:
make:
@@ -31,4 +35,7 @@ jobs:
python-version: ${{ inputs.python-version }}
node-version: ${{ matrix.node-version }}
npm: ${{ inputs.npm }}
- name: Install Playwright browser
if: ${{ inputs.playwright-browser != '' }}
run: uv run playwright install --with-deps ${{ inputs.playwright-browser }}
- run: make ${{ inputs.make }}