Skip to content

Commit eb9a715

Browse files
committed
Install javascript dependencies
1 parent 57471f9 commit eb9a715

File tree

1 file changed

+12
-5
lines changed

1 file changed

+12
-5
lines changed

Diff for: .github/actions/setup-action/action.yml

+12-5
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,15 @@ description: "Installs dependencies"
33
runs:
44
using: "composite"
55
steps:
6-
- name: Install Ruby and gems
7-
uses: ruby/setup-ruby@v1
8-
with:
9-
ruby-version: "3.3"
10-
bundler-cache: true
6+
- name: Install Ruby and gems
7+
uses: ruby/setup-ruby@v1
8+
with:
9+
ruby-version: "3.3"
10+
bundler-cache: true
11+
- name: Install npm
12+
uses: actions/setup-node@v4
13+
with:
14+
cache: npm
15+
cache-dependency-path: 'package-lock.json'
16+
- name: Install JS dependencies
17+
run: npm ci

0 commit comments

Comments
 (0)