rails-quality-assurance 1.0.3 → 1.0.4
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 908ef6567e7a4f26d1464e0f5a80a94bfb356e963f460ba2a492f60cc64616ce
|
|
4
|
+
data.tar.gz: 12de5bcfad0c970deb780284993b33c4e8d07d47a4029ca3a36fd258d64491d6
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: ca805e7b75a218a869b4187d5dcad8ad9791e57171a7b4fe4ca5e642c0488f45bdbdb12bf9e3a7a3e2736704a8246a25d39c6d190c2f8d803ab5be86bfe3a4da
|
|
7
|
+
data.tar.gz: 25cba59c02b58abc8d8f85b200196e10e24fa74332f8d9f63822cd4d84ed1503391bae28bb2cd904a66d31e2527ec92c085de0ea24c5c6a28032897ccbbe00ae
|
|
@@ -4,15 +4,15 @@
|
|
|
4
4
|
CI.run do
|
|
5
5
|
step 'Setup', 'bin/setup --skip-server'
|
|
6
6
|
|
|
7
|
-
step 'Style: Ruby', '
|
|
8
|
-
step 'Style: Reek', '
|
|
9
|
-
step 'Style: Flay', '
|
|
7
|
+
step 'Style: Ruby', 'bundle exec rubocop'
|
|
8
|
+
step 'Style: Reek', 'bin/rails qa:reek'
|
|
9
|
+
step 'Style: Flay', 'bin/rails qa:flay'
|
|
10
10
|
|
|
11
|
-
step 'Security: Gem audit', '
|
|
12
|
-
step 'Security: Brakeman', 'bin/brakeman
|
|
11
|
+
step 'Security: Gem audit', 'bin/rails qa:audit'
|
|
12
|
+
step 'Security: Brakeman', 'bin/rails qa:brakeman'
|
|
13
13
|
|
|
14
|
-
step 'Frontend: Biome', '
|
|
15
|
-
step 'Frontend: Stylelint', '
|
|
14
|
+
step 'Frontend: Biome', 'bin/rails qa:lint:biome' if File.exist?('biome.json')
|
|
15
|
+
step 'Frontend: Stylelint', 'bin/rails qa:lint:stylelint' if File.exist?('.stylelintrc.json')
|
|
16
16
|
|
|
17
17
|
step 'Tests: RSpec (parallel)', 'bin/rails spec:parallel'
|
|
18
18
|
|