build(deps): bump @langchain/core from 0.3.78 to 1.1.36 #1139
Workflow file for this run
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: test | |
| on: [push, pull_request] | |
| permissions: | |
| contents: read | |
| jobs: | |
| test: | |
| runs-on: ubuntu-latest | |
| strategy: | |
| matrix: | |
| scenario: [generated, nongenerated, regenerate] | |
| steps: | |
| - name: Checkout repository | |
| uses: actions/checkout@v6 | |
| - name: Setup Ollama | |
| uses: ai-action/setup-ollama@v2 | |
| - name: Cache LLM | |
| uses: actions/cache@v5 | |
| with: | |
| path: ~/.ollama | |
| key: ${{ runner.os }}-ollama | |
| - name: Download LLM | |
| run: ollama pull qwen2.5-coder | |
| - name: Delete generated test | |
| if: matrix.scenario == 'nongenerated' | |
| run: rm cypress/e2e/__generated__/options.cy.ts.json | |
| - name: Regenerate test | |
| if: matrix.scenario == 'regenerate' | |
| run: > | |
| find cypress/e2e -type f -name "*.cy.ts" | | |
| xargs sed -i 's/regenerate: false/regenerate: true/g' | |
| - name: Cypress run | |
| uses: cypress-io/github-action@v7 | |
| - name: Check generated test | |
| run: | | |
| if [[ -f 'cypress/e2e/__generated__/options.cy.ts.json' ]]; then | |
| echo 'Generated file exists' | |
| else | |
| echo 'Generated file does not exist' | |
| exit 1 | |
| fi | |
| - name: Record screenshots | |
| uses: actions/upload-artifact@v7 | |
| if: failure() | |
| with: | |
| name: cypress-screenshots | |
| path: cypress/screenshots | |
| - name: Record videos | |
| uses: actions/upload-artifact@v7 | |
| if: failure() | |
| with: | |
| name: cypress-videos | |
| path: cypress/videos |