Skip to content

Commit

Permalink
CI Generator: Fix indentation and linting violations.
Browse files Browse the repository at this point in the history
Follow-up to #1172

Fixes indentation ensuring a valid syntax. Also fixes linting violations
raised by `yarn lint`.
  • Loading branch information
stevepolitodesign committed Mar 23, 2024
1 parent 5f90074 commit df0bf6b
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 7 deletions.
4 changes: 2 additions & 2 deletions lib/generators/templates/ci/ci.yml.tt
Original file line number Diff line number Diff line change
Expand Up @@ -130,9 +130,9 @@ jobs:
DATABASE_URL: postgres://postgres:postgres@localhost:5432
# REDIS_URL: redis://localhost:6379/0
<%- if using_rspec? -%>
run: bin/rails db:setup spec
run: bin/rails db:setup spec
<%- else -%>
run: bin/rails db:setup test test:system
run: bin/rails db:setup test test:system
<%- end -%>

- name: Keep screenshots from failed system tests
Expand Down
10 changes: 5 additions & 5 deletions lib/generators/templates/ci/dependabot.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
version: 2
updates:
- package-ecosystem: bundler
directory: "/"
schedule:
interval: daily
open-pull-requests-limit: 10
- package-ecosystem: bundler
directory: '/'
schedule:
interval: daily
open-pull-requests-limit: 10

0 comments on commit df0bf6b

Please sign in to comment.