chore: release 0.1.27 #27
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: TypeScript - E2E Examples | |
| on: | |
| push: | |
| branches: ["main"] | |
| paths: | |
| - 'typescript/**' | |
| workflow_dispatch: | |
| concurrency: | |
| group: ${{ github.workflow }}-${{ github.ref }} | |
| cancel-in-progress: true | |
| defaults: | |
| run: | |
| working-directory: typescript | |
| jobs: | |
| test: | |
| name: Tests | |
| timeout-minutes: 60 | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - uses: ./.github/actions/setup | |
| env: | |
| GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
| - name: Install ollama | |
| run: curl -fsSL https://ollama.com/install.sh | sh | |
| - name: Run ollama | |
| run: | | |
| ollama serve & | |
| ollama pull granite4:micro | |
| - name: Call ollama API | |
| run: | | |
| curl -d '{"model": "granite4:micro", "stream": false, "prompt":"Whatever I say, answer with Yes"}' http://localhost:11434/api/generate | |
| - name: Example Tests | |
| env: | |
| OPENAI_API_KEY: ${{ secrets.OPENAI_API_KEY }} | |
| GOOGLE_API_KEY: ${{ secrets.GOOGLE_SEARCH_API_KEY }} | |
| GOOGLE_CSE_ID: ${{ secrets.GOOGLE_SEARCH_CSE_ID }} | |
| WATSONX_API_KEY: ${{ secrets.WATSONX_API_KEY }} | |
| WATSONX_PROJECT_ID: ${{ secrets.WATSONX_PROJECT_ID }} | |
| WATSONX_REGION: ${{ secrets.WATSONX_REGION }} | |
| # WATSONX_SPACE_ID: ${{ secrets.WATSONX_SPACE_ID }} | |
| # WATSONX_DEPLOYMENT_ID: ${{ secrets.WATSONX_DEPLOYMENT_ID }} | |
| shell: bash | |
| run: | | |
| mise typescript:test:examples -- --max-concurrency=1 |