Skip to content

Commit 3c39d29

Browse files
committed
Add Node.js setup and npm install steps to CI workflow
1 parent 32f5da7 commit 3c39d29

1 file changed

Lines changed: 6 additions & 0 deletions

File tree

.github/workflows/ci.yml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -29,6 +29,12 @@ jobs:
2929
with:
3030
ruby-version: ${{ matrix.ruby }}
3131
bundler-cache: true
32+
- name: Setup Node
33+
uses: actions/setup-node@v6
34+
with:
35+
node-version: '24'
36+
- name: Install node dependencies
37+
run: npm install
3238
- name: Dump Ruby version
3339
run: ruby -v
3440
- name: Run tests

0 commit comments

Comments
 (0)