-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Update GitHub Actions CI configurations
- Add Bullet gem for N+1 query detection - Add Rails best practices gem - Creat DB schema with db:migrate - Add DB schema consistency check - Setup linters and unit test jobs in CI pipeline
- Loading branch information
1 parent
9022543
commit a060c5c
Showing
12 changed files
with
403 additions
and
44 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 |
---|---|---|
@@ -1,12 +1,47 @@ | ||
version: 2 | ||
updates: | ||
# Enable version updates for gems using bundler | ||
- package-ecosystem: bundler | ||
directory: '/' | ||
schedule: | ||
interval: daily | ||
open-pull-requests-limit: 10 | ||
- package-ecosystem: github-actions | ||
commit-message: | ||
prefix: '[GEM] ' | ||
include: scope | ||
labels: | ||
- bundler | ||
- dependencies | ||
|
||
# Enable version updates for npm | ||
- package-ecosystem: npm | ||
directory: '/' | ||
schedule: | ||
interval: daily | ||
commit-message: | ||
prefix: '[NPM] ' | ||
include: scope | ||
labels: | ||
- npm | ||
- dependencies | ||
|
||
# Enable version updates for Docker | ||
- package-ecosystem: docker | ||
directory: '/' | ||
schedule: | ||
interval: daily | ||
open-pull-requests-limit: 10 | ||
commit-message: | ||
prefix: '[Docker] ' | ||
include: scope | ||
labels: | ||
- docker | ||
|
||
# Enable version updates for GitHub Actions | ||
- package-ecosystem: github-actions | ||
directory: '/' | ||
schedule: | ||
interval: weekly | ||
commit-message: | ||
prefix: '[CI] ' | ||
include: scope | ||
labels: | ||
- github-actions |
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
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
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
Oops, something went wrong.