Skip to content

Commit

Permalink
Update GitHub ci.yml file to set up node
Browse files Browse the repository at this point in the history
  • Loading branch information
elohanlon committed Dec 21, 2023
1 parent 133fbe7 commit 162764f
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@ jobs:
strategy:
matrix:
ruby-version: ['2.7.6']
node: ['20']
env:
RAILS_ENV: test
NOKOGIRI_USE_SYSTEM_LIBRARIES: true
Expand All @@ -32,5 +33,11 @@ jobs:
java-version: '8'
- name: Set up default config files
run: bundle exec rake hyacinth:setup:config_files
- name: Set up Node
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node }}
- run: npm install -g yarn
- run: yarn install
- name: Run CI task
run: bundle exec rake hyacinth:ci

0 comments on commit 162764f

Please sign in to comment.