We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b7b16a8 commit 4372119Copy full SHA for 4372119
1 file changed
.github/actions/install-npm-modules/action.yml
@@ -1,22 +1,14 @@
1
----
2
name: Install Node Modules
3
4
runs:
5
- using: Composite
+ using: composite
6
steps:
7
- name: Setup Node.js
8
uses: actions/setup-node@v3
9
with:
10
node-version: latest
11
-
12
- - name: Cache Node Modules
13
- uses: actions/cache@v3
14
- id: node_modules_cache_id
15
- with:
16
- path: "**/node_modules"
17
- key: ${{ runner.os }}-${{ hashFiles('**/package-lock.json') }}
+ cache: npm
18
19
- name: Install Node Modules
20
- if: steps.node_modules_cache_id.outputs.cache-hit != 'true'
21
run: npm ci
22
shell: bash
0 commit comments