From a0862b6d61f35a241589d2db9a2942c752d508ca Mon Sep 17 00:00:00 2001 From: Liam Bigelow Date: Mon, 2 Aug 2021 20:58:39 +1200 Subject: [PATCH] Add working directory to GH action node setup --- .github/workflows/test-node.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/test-node.yml b/.github/workflows/test-node.yml index e5b256be..68da7e3a 100644 --- a/.github/workflows/test-node.yml +++ b/.github/workflows/test-node.yml @@ -21,6 +21,7 @@ jobs: - uses: actions/checkout@v2 - name: Use Node.js ${{ matrix.node-version }} uses: actions/setup-node@v2 + working-directory: ${{ env.cwd }} with: node-version: ${{ matrix.node-version }} cache: 'npm'