Skip to content

Merge pull request #7 from i-am-bee/fix/tool-imports #5

Merge pull request #7 from i-am-bee/fix/tool-imports

Merge pull request #7 from i-am-bee/fix/tool-imports #5

Workflow file for this run

name: CI
on:
push:
branches: ["main"]
paths-ignore:
- "**/*.md"
workflow_dispatch:
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
test:
name: Tests
timeout-minutes: 20
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
node-version: [18.x, 20.x, 22.x]
steps:
- uses: actions/checkout@v4
- name: Enable Corepack
run: corepack enable
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
cache: "yarn"
- name: Install dependencies
run: yarn install --immutable
- name: E2E Tests
env:
GENAI_API_KEY: ${{ secrets.GENAI_API_KEY }}
run: yarn test:e2e