Skip to content

Commit

Permalink
Merge pull request #125 from sellersindustry/102-development-server
Browse files Browse the repository at this point in the history
Added Development Server
  • Loading branch information
SellersEvan authored May 20, 2024
2 parents 34c03e1 + bd9676c commit 98a03ce
Show file tree
Hide file tree
Showing 64 changed files with 3,166 additions and 1,021 deletions.
29 changes: 27 additions & 2 deletions .github/workflows/testing.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@ on:

jobs:


unit-test:
strategy:
matrix:
Expand All @@ -27,8 +28,32 @@ jobs:
- name: Install dependencies
run: npm install

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


endpoint-test:
strategy:
matrix:
os: [ubuntu-latest, windows-latest, macos-latest]

name: Endpoint Tests (${{ matrix.os }})
runs-on: ${{ matrix.os }}

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
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
**/.vercel/
**/.sherpa/
**/.sherpa-dev/
**/sherpa.TS_VALIDATION_BUFFER.ts
/node_modules
/dist
Expand Down
Loading

0 comments on commit 98a03ce

Please sign in to comment.