This repository was archived by the owner on May 29, 2026. It is now read-only.
genai tests #1021
This file contains hidden or 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 tests | |
| on: | |
| workflow_dispatch: | |
| schedule: | |
| - cron: "0 7 * * *" | |
| concurrency: | |
| group: ${{ github.workflow }}-${{ github.ref }} | |
| cancel-in-progress: true | |
| jobs: | |
| build: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| with: | |
| submodules: "recursive" | |
| fetch-depth: 0 | |
| - uses: actions/setup-node@v4 | |
| with: | |
| node-version: "22" | |
| cache: yarn | |
| - run: yarn install --frozen-lockfile | |
| - name: compile | |
| run: yarn compile:action | |
| - name: download ollama docker | |
| run: yarn ollama:start | |
| - name: run test within scripts | |
| run: yarn test:scripts --out-summary $GITHUB_STEP_SUMMARY --test-delay 10 |