-
Notifications
You must be signed in to change notification settings - Fork 321
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
feat: use different color for annotations #366
Conversation
✅ Deploy Preview for midscene ready!
To edit notification comments on pull requests, go to your Netlify site configuration. |
runs-on: ubuntu-22.04 | ||
strategy: | ||
matrix: | ||
node-version: [18.19.0] | ||
|
||
env: | ||
OPENAI_API_KEY: ${{ secrets.OPENAI_API_KEY }} | ||
OPENAI_BASE_URL: ${{ secrets.OPENAI_BASE_URL }} | ||
MIDSCENE_MODEL_NAME: gpt-4o-2024-11-20 | ||
CI: 1 | ||
|
||
steps: | ||
- uses: actions/checkout@v4 | ||
with: | ||
fetch-depth: 0 | ||
ref: ${{ github.event.inputs.branch || 'main' }} | ||
|
||
- name: Setup pnpm | ||
uses: pnpm/action-setup@v2 | ||
with: | ||
version: 9.3.0 | ||
|
||
- name: Setup Node.js | ||
uses: actions/setup-node@v4 | ||
with: | ||
node-version: '18' | ||
cache: 'pnpm' | ||
|
||
- name: Install dependencies | ||
run: pnpm install --frozen-lockfile | ||
|
||
- name: Build project | ||
run: pnpm run build | ||
|
||
- name: Run evaluation | ||
run: | | ||
cd packages/evaluation | ||
pnpm run evaluate:inspect | ||
pnpm run evaluate:assertion |
Check warning
Code scanning / CodeQL
Workflow does not contain permissions Medium
ref: ${{ github.event.inputs.branch || 'main' }} | ||
|
||
- name: Setup pnpm | ||
uses: pnpm/action-setup@v2 |
Check warning
Code scanning / CodeQL
Unpinned tag for a non-immutable Action in workflow Medium
evaluation