Skip to content

Commit

Permalink
Added separated workflows for main stability and for pr checks.
Browse files Browse the repository at this point in the history
  • Loading branch information
darielnoel committed Jul 16, 2024
1 parent 456cd17 commit 18f53b1
Show file tree
Hide file tree
Showing 2 changed files with 40 additions and 3 deletions.
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
name: Run Tests on PR
name: PR Validation CI

on:
pull_request:
branches: [ main ] # Adjust based on your target branch
branches: [main] # Triggered on PRs targeting these branches

jobs:
test:
build-and-test:
runs-on: ubuntu-latest
env:
OPENAI_API_KEY: ${{ secrets.OPENAI_API_KEY }}
Expand Down
37 changes: 37 additions & 0 deletions .github/workflows/stable-main-check-workflow.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,37 @@
name: Stable Main CI

on:
push:
branches: [main] # Triggered on commits pushed to these branches

jobs:
build-and-test:
runs-on: ubuntu-latest
env:
OPENAI_API_KEY: ${{ secrets.OPENAI_API_KEY }}
ANTHROPIC_API_KEY: ${{ secrets.ANTHROPIC_API_KEY }}
GOOGLE_API_KEY: ${{ secrets.GOOGLE_API_KEY }}
MISTRAL_API_KEY: ${{ secrets.MISTRAL_API_KEY }}
steps:
- name: Checkout code
uses: actions/checkout@v2

- name: Set up Node.js
uses: actions/setup-node@v2
with:
node-version: '18'

- name: Install dependencies
run: npm install --also=dev

- name: Build for integration tests
run: npm run build:test

- name: Run integration tests
run: npm run test:integration

- name: Build production version
run: npm run build

- name: Run e2e tests
run: npm run test:e2e

0 comments on commit 18f53b1

Please sign in to comment.