Skip to content

Commit

Permalink
Updated Workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
SellersEvan committed May 15, 2024
1 parent 2a5a48a commit ed080de
Showing 1 changed file with 20 additions and 2 deletions.
22 changes: 20 additions & 2 deletions .github/workflows/testing.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,8 +27,26 @@ jobs:
- name: Install dependencies
run: npm install

- name: Run Tests
run: npm test
- name: Run Unit Tests
run: npm run test-unit

endpoint-test:
name: Endpoint Tests
runs-on: ubuntu-latest

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

- uses: actions/setup-node@v4
with:
node-version: 20

- name: Install dependencies
run: npm install

- name: Run Endpoint Tests
run: npm run test-endpoints

linting:
name: Linting
Expand Down

0 comments on commit ed080de

Please sign in to comment.