We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4331af3 commit 73415cbCopy full SHA for 73415cb
.github/actions/setup/action.yml
@@ -7,6 +7,7 @@ runs:
7
steps:
8
- name: Setup Node.js
9
uses: actions/setup-node@v6
10
+ working-directory: ./wp-react-lib
11
with:
12
node-version: 22.x
13
cache: npm
@@ -15,11 +16,13 @@ runs:
15
16
17
- name: Upgrade npm for OIDC support
18
run: npm install -g npm@latest
19
20
shell: bash
21
22
- name: Restore node_modules cache
23
id: modules-cache
24
uses: actions/cache@v4
25
26
27
path: |
28
node_modules
@@ -28,4 +31,5 @@ runs:
31
- name: Install dependencies
29
32
if: steps.modules-cache.outputs.cache-hit != 'true'
30
33
run: npm ci
34
35
0 commit comments