Refactor Prompt Node Options Structure #1371
Workflow file for this run
This file contains 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: genai pull request commit review | |
on: | |
pull_request: | |
paths: | |
- yarn.lock | |
- ".github/workflows/ollama.yml" | |
- "packages/core/**/*" | |
- "packages/cli/**/*" | |
- "packages/samples/**/*" | |
env: | |
# Configure default GenAIScript models | |
# using Ollama's models | |
GENAISCRIPT_DEFAULT_MODEL: ollama:qwen2.5-coder:7b | |
GENAISCRIPT_DEFAULT_SMALL_MODEL: ollama:qwen2.5-coder:1.5b | |
GENAISCRIPT_DEFAULT_VISION_MODEL: ollama:llama3.2-vision:11b | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
permissions: | |
pull-requests: write | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
submodules: "recursive" | |
fetch-depth: 10 | |
- uses: actions/setup-node@v4 | |
with: | |
node-version: "20" | |
cache: yarn | |
- run: yarn install --frozen-lockfile | |
- name: typecheck | |
run: yarn typecheck | |
- name: compile | |
run: yarn compile | |
- name: start ollama | |
run: yarn ollama:start | |
- name: git stuff | |
run: git fetch origin && git pull origin main:main | |
- name: genaiscript pr-review-commit | |
run: node packages/cli/built/genaiscript.cjs run pr-review-commit --out ./temp/genai/pr-review-commit -prr --out-trace $GITHUB_STEP_SUMMARY | |
continue-on-error: true | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
GITHUB_COMMIT_SHA: ${{ github.event.pull_request.head.sha}} |