From 41dc66c4ae636e243f7465bb9716aa153ea0ba41 Mon Sep 17 00:00:00 2001 From: bougwal Date: Fri, 31 May 2024 18:14:15 +0200 Subject: [PATCH] chore(CI): prepare client JEST CI verification job integration in G-A --- .github/workflows/ecommerceddd-build.yml | 17 +++++++++++++++-- 1 file changed, 15 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ecommerceddd-build.yml b/.github/workflows/ecommerceddd-build.yml index ab5d4c0a..a5d0aa19 100644 --- a/.github/workflows/ecommerceddd-build.yml +++ b/.github/workflows/ecommerceddd-build.yml @@ -8,7 +8,6 @@ on: jobs: build: - runs-on: ubuntu-latest steps: @@ -22,4 +21,18 @@ jobs: - name: Build run: dotnet build --no-restore EcommerceDDD.sln - name: Test - run: dotnet test --no-build --verbosity normal EcommerceDDD.sln \ No newline at end of file + run: dotnet test --no-build --verbosity normal EcommerceDDD.sln + + spa-test-verify: + runs-on: ubuntu-latest + defaults: + run: + working-directory: src/EcommerceDDD.Spa + steps: + - uses: actions/checkout@v4 + - uses: actions/setup-node@v4 + with: + node-version: 18 + - run: npm ci + - run: npm run test + \ No newline at end of file