Skip to content

Commit

Permalink
test server tests
Browse files Browse the repository at this point in the history
  • Loading branch information
posix4e committed Mar 2, 2024
1 parent b298f13 commit 844bb7e
Showing 1 changed file with 23 additions and 0 deletions.
23 changes: 23 additions & 0 deletions .github/workflows/servertests.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
name: Runs All Unit Tests
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
jobs:
test:
timeout-minutes: 60
defaults:
run:
working-directory: ./server
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: '18'
- name: Install dependencies
run: yarn
- name: Execute Unit tests
run: yarn test

0 comments on commit 844bb7e

Please sign in to comment.