Skip to content

Commit

Permalink
feat: added github actions for automatic backend testing
Browse files Browse the repository at this point in the history
  • Loading branch information
Saphereye committed Jan 27, 2024
1 parent a96ccc3 commit 5e44fe1
Show file tree
Hide file tree
Showing 2 changed files with 4,904 additions and 0 deletions.
26 changes: 26 additions & 0 deletions .github/workflows/backend_test.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
name: Run Backend Tests

on: [push, pull_request]

jobs:
test:
runs-on: ubuntu-latest

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

- name: Set up Node.js
uses: actions/setup-node@v3
with:
node-version: 14

- name: Install Dependencies
run: |
cd backend
npm install
- name: Run Tests
run: |
cd backend
npm test
Loading

0 comments on commit 5e44fe1

Please sign in to comment.