Skip to content

Commit 73415cb

Browse files
fix working directory
1 parent 4331af3 commit 73415cb

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

.github/actions/setup/action.yml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@ runs:
77
steps:
88
- name: Setup Node.js
99
uses: actions/setup-node@v6
10+
working-directory: ./wp-react-lib
1011
with:
1112
node-version: 22.x
1213
cache: npm
@@ -15,11 +16,13 @@ runs:
1516

1617
- name: Upgrade npm for OIDC support
1718
run: npm install -g npm@latest
19+
working-directory: ./wp-react-lib
1820
shell: bash
1921

2022
- name: Restore node_modules cache
2123
id: modules-cache
2224
uses: actions/cache@v4
25+
working-directory: ./wp-react-lib
2326
with:
2427
path: |
2528
node_modules
@@ -28,4 +31,5 @@ runs:
2831
- name: Install dependencies
2932
if: steps.modules-cache.outputs.cache-hit != 'true'
3033
run: npm ci
34+
working-directory: ./wp-react-lib
3135
shell: bash

0 commit comments

Comments
 (0)