-
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Rakefile
45 lines (37 loc) · 1.4 KB
/
Rakefile
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
task default: 'test'
# These tasks are executed in GitHub Actions
desc 'Get CoderDojo data on the Earth via Raspberry Pi Clubs API'
task(:get_data_from_earth) { ruby 'get_data_from_earth.rb' }
task(:get_data_from_japan) { ruby 'get_data_from_japan.rb' }
task(:cache_dojo_logos) { ruby 'cache_dojo_logos.rb' }
task(:upsert_dojos_geojson) { ruby 'upsert_dojos_geojson.rb' }
# GitHub - gjtorikian/html-proofer
# https://github.com/gjtorikian/html-proofer
require 'html-proofer'
task test: [:build] do
#require './tests/custom_checks'
options = {
#checks: ['Links', 'Images', 'Scripts', 'OpenGraph', 'Favicon', 'CustomChecks'],
checks: ['Links', 'Images', 'Scripts', 'OpenGraph', 'Favicon'],
allow_hash_href: true,
disable_external: ENV['TEST_EXTERNAL_LINKS'] != 'true',
enforce_https: true,
# NOTE: Ignore file, URL, and response as follows
ignore_files: [
/google(.*)\.html/,
],
# Ignore domains that need to access by HTTP not HTTPS.
ignore_urls: [
/twitter.com/, # Skip testing Twitter URLs
],
#ignore_status_codes: [0, 500, 999],
}
HTMLProofer.check_directory('_site', options).run
end
# Enable 'build' to flush cache files via 'clean'
task build: [:clean] do
system 'JEKYLL_ENV=test bundle exec jekyll build' unless ENV['SKIP_BUILD'] == 'true'
end
task :clean do
system 'bundle exec jekyll clean' unless ENV['SKIP_BUILD'] == 'true'
end