We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 57471f9 commit eb9a715Copy full SHA for eb9a715
.github/actions/setup-action/action.yml
@@ -3,8 +3,15 @@ description: "Installs dependencies"
3
runs:
4
using: "composite"
5
steps:
6
- - name: Install Ruby and gems
7
- uses: ruby/setup-ruby@v1
8
- with:
9
- ruby-version: "3.3"
10
- bundler-cache: true
+ - name: Install Ruby and gems
+ uses: ruby/setup-ruby@v1
+ with:
+ ruby-version: "3.3"
+ bundler-cache: true
11
+ - name: Install npm
12
+ uses: actions/setup-node@v4
13
14
+ cache: npm
15
+ cache-dependency-path: 'package-lock.json'
16
+ - name: Install JS dependencies
17
+ run: npm ci
0 commit comments