mirror of
https://github.com/Freika/dawarich.git
synced 2026-01-10 17:21:38 -05:00
Add npm install to CI workflow
This commit is contained in:
parent
9a818fd84e
commit
9f3d496a5c
1 changed files with 9 additions and 1 deletions
10
.github/workflows/ci.yml
vendored
10
.github/workflows/ci.yml
vendored
|
|
@ -32,7 +32,15 @@ jobs:
|
||||||
ruby-version: '3.2.3'
|
ruby-version: '3.2.3'
|
||||||
bundler-cache: true
|
bundler-cache: true
|
||||||
|
|
||||||
- name: Install dependencies
|
- name: Set up Node.js
|
||||||
|
uses: actions/setup-node@v3
|
||||||
|
with:
|
||||||
|
node-version: '16' # Use the appropriate Node.js version
|
||||||
|
|
||||||
|
- name: Install Node.js dependencies
|
||||||
|
run: npm install
|
||||||
|
|
||||||
|
- name: Install Ruby dependencies
|
||||||
run: bundle install
|
run: bundle install
|
||||||
|
|
||||||
- name: Run tests
|
- name: Run tests
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue