From b024a731580a04ad6e7d4a6baa476fff1cbc0155 Mon Sep 17 00:00:00 2001 From: Anton Korotkov Date: Mon, 5 Aug 2024 18:26:36 +0200 Subject: [PATCH] fix test --- .github/workflows/tests.yml | 13 ++++++++++--- 1 file changed, 10 insertions(+), 3 deletions(-) diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index e6a81aa..88d76a3 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -15,11 +15,18 @@ jobs: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v4 + - name: Checkout + uses: actions/checkout@v4 + - name: Use Node.js uses: actions/setup-node@v3 with: node-version: 18 cache: 'npm' - - run: npm ci - - run: npm test + - name: Install + run: npm ci + working-directory: ./app + + - name: Test + run: npm test + working-directory: ./app