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