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 90e04f7 commit 0ace45dCopy full SHA for 0ace45d
.github/workflows/ci.yml
@@ -27,8 +27,17 @@ jobs:
27
with:
28
ruby-version: ${{ matrix.ruby-version }}
29
bundler-cache: true
30
- - name: Install dependencies
+ - name: Set up Node.js
31
+ uses: actions/setup-node@v4
32
+ with:
33
+ node-version: '20'
34
+ cache: 'npm'
35
+ cache-dependency-path: 'test/dummy/package-lock.json'
36
+ - name: Install Ruby dependencies
37
+ run: bundle install
38
+ - name: Install Node.js dependencies
39
run: |
- bundle install
40
+ cd test/dummy
41
+ npm install
42
- name: Run tests
43
run: bundle exec bin/rails test
0 commit comments