test(server): migrate to node internal test (#2000)

This commit is contained in:
Himself65
2023-04-18 00:07:03 -05:00
committed by GitHub
parent ea9861bfa0
commit 18223c22ef
13 changed files with 108 additions and 487 deletions

View File

@@ -26,8 +26,6 @@ jobs:
- uses: actions/checkout@v3
- name: Install All Dependencies
uses: ./.github/actions/setup-node
with:
electron-workspace-install: true
build-storybook:
name: Build Storybook
@@ -84,6 +82,18 @@ jobs:
path: ./apps/web/.next
if-no-files-found: error
server-test:
name: Server Test
runs-on: ubuntu-latest
environment: development
steps:
- uses: actions/checkout@v3
- name: Setup Node.js
uses: ./.github/actions/setup-node
- name: Run server tests
run: yarn test:coverage
working-directory: apps/server
storybook-test:
name: Storybook Test
runs-on: ubuntu-latest