Skip to content

fix: 🏷️ fix types exports #421

fix: 🏷️ fix types exports

fix: 🏷️ fix types exports #421

Workflow file for this run

name: Unit & Component Tests
on:
pull_request:
types:
- opened
- reopened
- synchronize
- ready_for_review
jobs:
tests:
name: Run unit tests and CT tests
if: ${{ !github.event.pull_request.draft }}
runs-on: ubuntu-latest
env:
VITE_APP_GIT_TAG: ${{github.ref}}
VITE_APP_GIT_SHA: ${{github.sha}}
steps:
- uses: actions/checkout@v2
- name: Setup Node.js
uses: actions/setup-node@v2
with:
node-version: 18
- name: Install dependencies
run: npm ci
- name: Test all (client and server)
run: npm test