Skip to content

Commit

Permalink
Merge remote-tracking branch 'origin/main'
Browse files Browse the repository at this point in the history
  • Loading branch information
thadeucbr committed Sep 30, 2024
2 parents 8b1a472 + 4c4f60a commit 958d6b8
Show file tree
Hide file tree
Showing 2 changed files with 41 additions and 1 deletion.
40 changes: 40 additions & 0 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,40 @@
name: Linter and Test

on:
push:
branches:
- main
pull_request:
branches:
- main

jobs:
build:
runs-on: ubuntu-latest

steps:
- name: Checkout code
uses: actions/checkout@v2

- name: Setup Node.js
uses: actions/setup-node@v2
with:
node-version: '20.17.0'

- name: Install dependencies
run: npm install

- name: Run linter
run: npm run lint

- name: Run tests
run: npm test

- name: Generate test coverage
run: npm run coverage

- name: Upload coverage results
uses: actions/upload-artifact@v3
with:
name: coverage-results
path: coverage/
2 changes: 1 addition & 1 deletion readme.MD
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Project Title
# GPT Integration with Express.js: Managing API Responses with MongoDB

## Description

Expand Down

0 comments on commit 958d6b8

Please sign in to comment.