From f375f96ea07a55f62552a9b9792fa2d3752ef87b Mon Sep 17 00:00:00 2001 From: Thomas Wilkerling Date: Thu, 17 Apr 2025 14:53:03 +0200 Subject: [PATCH] github actions: use working-directory --- .github/workflows/node.js.yml | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/.github/workflows/node.js.yml b/.github/workflows/node.js.yml index 705185a..eb66963 100644 --- a/.github/workflows/node.js.yml +++ b/.github/workflows/node.js.yml @@ -53,5 +53,7 @@ jobs: cache: 'npm' - run: npm ci - run: npm run build --if-present - - run: cd test && npm ci - - run: cd test && npm test + - run: npm ci + working-directory: test + - run: npm test + working-directory: test