Skip to content

Commit

Permalink
Create main.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
AjithAkuthota23 authored Oct 1, 2024
1 parent f01ac0f commit 49850f0
Showing 1 changed file with 36 additions and 0 deletions.
36 changes: 36 additions & 0 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,36 @@
name: CI Pipeline

on:
pull_request:
push:
branches:
- main

jobs:
run-tests:
runs-on: ubuntu-latest

steps:
# Step 1: Check out the code from the repository
- name: Checkout code
uses: actions/checkout@v3

# Step 2: Set up Node.js environment
- name: Setup Node.js
uses: actions/setup-node@v3
with:
node-version: '16' # Specify the Node.js version

# Step 3: Change working directory
- name: Change Directory
run: cd Enhancing-Bioinformatics-Research-through-LLM/llm_bioinformatics_research

# Step 4: Install dependencies
- name: Install dependencies
run: npm install
working-directory: Enhancing-Bioinformatics-Research-through-LLM/llm_bioinformatics_research

# Step 5: Run tests
- name: Run tests
run: npm test
working-directory: Enhancing-Bioinformatics-Research-through-LLM/llm_bioinformatics_research

0 comments on commit 49850f0

Please sign in to comment.