-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
ref: Rewrite extends loading in Engine (#15)
* Remove unneded dependency * update chrome setup * Move config.to_prepare in the initializer
- Loading branch information
Showing
2 changed files
with
20 additions
and
14 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -71,7 +71,19 @@ jobs: | |
name: Create test app | ||
- run: mkdir -p ./spec/decidim_dummy_app/tmp/screenshots | ||
name: Create the screenshots folder | ||
- uses: nanasess/[email protected] | ||
- uses: nanasess/setup-chromedriver@v2 | ||
with: | ||
chromedriver-version: 119.0.6045.105 | ||
- name: List Chrome | ||
shell: "bash" | ||
run: apt list --installed | grep chrome | ||
- name: Remove Chrome | ||
shell: "bash" | ||
run: sudo apt remove google-chrome-stable | ||
- uses: browser-actions/setup-chrome@v1 | ||
with: | ||
chrome-version: 119.0.6045.105 | ||
|
||
- run: RAILS_ENV=test bundle exec rails assets:precompile | ||
name: Precompile assets | ||
working-directory: ./spec/decidim_dummy_app/ | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters