Skip to content

AtlasMemory Eval

AtlasMemory Eval #86

Workflow file for this run

name: AtlasMemory Eval
on:
pull_request:
schedule:
- cron: '0 2 * * *'
workflow_dispatch:
jobs:
pr-quick-check:
if: github.event_name == 'pull_request'
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup Node
uses: actions/setup-node@v4
with:
node-version: '20'
cache: 'npm'
- name: Install
run: npm ci
- name: Build
run: npm run build
- name: Eval Synth-100
run: npm run eval:synth100
nightly-full-eval:
if: github.event_name == 'schedule' || github.event_name == 'workflow_dispatch'
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup Node
uses: actions/setup-node@v4
with:
node-version: '20'
cache: 'npm'
- name: Install
run: npm ci
- name: Build
run: npm run build
- name: Full Eval
run: npm run eval