Skip to content

feat: add core data model, payments sandbox, LLM interface and synthe… #1

feat: add core data model, payments sandbox, LLM interface and synthe…

feat: add core data model, payments sandbox, LLM interface and synthe… #1

Workflow file for this run

name: ci

Check failure on line 1 in .github/workflows/ci.yml

View workflow run for this annotation

GitHub Actions / .github/workflows/ci.yml

Invalid workflow file

(Line: 23, Col: 9): Unrecognized function: 'hashFiles'. Located at position 1 within expression: hashFiles('console/package.json') != ''
on:
push:
branches: [main]
pull_request:
jobs:
python:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
python-version: "3.10"
cache: pip
- run: pip install -e ".[dev]"
- run: ruff check bazaar tests
- run: pytest -q
console:
runs-on: ubuntu-latest
if: ${{ hashFiles('console/package.json') != '' }}
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: 22
- run: npm ci
working-directory: console
- run: npm run build
working-directory: console