Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Remove sass gem from CI setup steps #1515

Merged
merged 2 commits into from Jun 13, 2023
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
8 changes: 4 additions & 4 deletions .github/workflows/ci.yml
Expand Up @@ -79,12 +79,12 @@ jobs:
- name: Set up Ruby
uses: ruby/setup-ruby@v1
with:
ruby-version: 3.1
ruby-version: 3.2

- name: Install dependencies
run: >
sudo apt install libxslt-dev &&
gem install sass jekyll:4.3.1 html-proofer:5.0.3
gem install jekyll:4.3.2 html-proofer:5.0.7

- name: Build website
run: sbt makeMicrosite
Expand Down Expand Up @@ -114,10 +114,10 @@ jobs:
- name: Set up Ruby
uses: ruby/setup-ruby@v1
with:
ruby-version: 3.1
ruby-version: 3.2

- name: Install dependencies
run: gem install sass jekyll:4.3.1
run: gem install jekyll:4.3.2

- name: Build and compare website
id: diff_website
Expand Down