Skip to content

Adding example excel file and sample script to process (#465) #2444

Adding example excel file and sample script to process (#465)

Adding example excel file and sample script to process (#465) #2444

Workflow file for this run

name: build
on:
push:
branches: [main]
pull_request:
workflow_dispatch:
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [20, 22]
steps:
- uses: actions/checkout@v4
with:
submodules: "recursive"
fetch-depth: 10
- uses: actions/setup-node@v4
with:
node-version: "${{ matrix.node-version }}"
cache: yarn
- run: yarn install --frozen-lockfile
- name: typecheck
run: yarn typecheck
- name: compile
run: yarn compile
- name: compile system scripts
run: yarn test:system
- name: compile tests
run: yarn test:compile
- name: core tests
run: yarn test:core
- name: unit tests
run: yarn test:samples
- name: docs
run: yarn build:docs
- name: run cli
run: node packages/cli/built/genaiscript.cjs run code-xray packages/sample/src/counting.gpspec.md --prompt -ot $GITHUB_STEP_SUMMARY -l single
- name: run cli pipe
run: cat packages/sample/src/counting.gpspec.md | node packages/cli/built/genaiscript.cjs run code-xray --prompt -ot $GITHUB_STEP_SUMMARY -l multi
- name: run cli glob
run: node packages/cli/built/genaiscript.cjs run code-xray packages/sample/src/counting.py packages/sample/src/*.ts --prompt -o .genaiscript/tmp/cli -ot $GITHUB_STEP_SUMMARY -l glob
- name: package vscode
run: yarn package