Skip to content

Commit

Permalink
fix: don't include trailing whitespace or newlines in GitHub Actions …
Browse files Browse the repository at this point in the history
…workflows
  • Loading branch information
G-Rath committed Aug 3, 2023
1 parent 6b2e1b5 commit 71dc570
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions variants/github_actions_ci/workflows/ci.yml.tt
Original file line number Diff line number Diff line change
Expand Up @@ -14,10 +14,10 @@ env:
DATABASE_URL: postgres://postgres:postgres@localhost:5432/postgres
RAILS_SECRET_KEY_BASE: any-value-works-here-in-ci-but-prod-should-be-created-with-bundle-exec-rails-secret
MAIL_FROM: "changeme@example.com"
<% if TEMPLATE_CONFIG.apply_variant_sidekiq? %>
<%- if TEMPLATE_CONFIG.apply_variant_sidekiq? -%>
SIDEKIQ_WEB_USERNAME: admin
SIDEKIQ_WEB_PASSWORD: password
<% end %>
<%- end -%>

# Restrict jobs in this workflow to only be allowed to read this repo by default.
#
Expand Down Expand Up @@ -48,9 +48,9 @@ jobs:
node-version-file: ".node-version"
cache: "yarn"
- run: yarn install --frozen-lockfile
<% if TEMPLATE_CONFIG.use_typescript? %>
<%- if TEMPLATE_CONFIG.use_typescript? -%>
- run: yarn run typecheck
<% end %>
<%- end -%>
- run: yarn run js-lint
- run: yarn run format-check
ruby_based_checks:
Expand Down

0 comments on commit 71dc570

Please sign in to comment.