Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

update ci #122

Merged
merged 1 commit into from
Dec 15, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
5 changes: 3 additions & 2 deletions .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,12 +10,13 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v2
uses: actions/checkout@v4

- name: Set up Ruby
uses: ruby/setup-ruby@v1
with:
bundler-cache: true
cache-version: 1

- name: Install dependencies
run: bundle install
Expand All @@ -27,4 +28,4 @@ jobs:
uses: JamesIves/github-pages-deploy-action@4.1.5
with:
branch: master
folder: _site
folder: _site
3 changes: 2 additions & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,11 +10,12 @@ jobs:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v4
- name: Set up Ruby
uses: ruby/setup-ruby@v1
with:
bundler-cache: true
cache-version: 1

- name: Install dependencies
run: bundle install
Expand Down
2 changes: 1 addition & 1 deletion Gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ source 'https://rubygems.org'
gem 'jekyll'
gem 'rouge'
gem 'rake'
gem 'html-proofer'
gem 'html-proofer', '~> 5.0.8'
gem 'kramdown-parser-gfm'

group :jekyll_plugins do
Expand Down
20 changes: 10 additions & 10 deletions Gemfile.lock
Original file line number Diff line number Diff line change
Expand Up @@ -5,14 +5,14 @@ GEM
addressable (2.8.4)
public_suffix (>= 2.0.2, < 6.0)
afm (0.2.2)
async (2.6.2)
async (2.6.5)
console (~> 1.10)
fiber-annotation
io-event (~> 1.1)
timers (~> 4.1)
colorator (1.1.0)
concurrent-ruby (1.2.2)
console (1.17.4)
console (1.23.3)
fiber-annotation
fiber-local
cssminify2 (2.0.1)
Expand All @@ -29,7 +29,7 @@ GEM
forwardable-extended (2.6.0)
google-protobuf (3.23.4)
hashery (2.1.2)
html-proofer (5.0.7)
html-proofer (5.0.8)
addressable (~> 2.3)
async (~> 2.1)
nokogiri (~> 1.13)
Expand All @@ -42,7 +42,7 @@ GEM
http_parser.rb (0.8.0)
i18n (1.14.1)
concurrent-ruby (~> 1.0)
io-event (1.2.2)
io-event (1.3.3)
jekyll (4.3.2)
addressable (~> 2.4)
colorator (~> 1.0)
Expand Down Expand Up @@ -85,8 +85,8 @@ GEM
rb-fsevent (~> 0.10, >= 0.10.3)
rb-inotify (~> 0.9, >= 0.9.10)
mercenary (0.4.0)
mini_portile2 (2.8.4)
nokogiri (1.15.3)
mini_portile2 (2.8.5)
nokogiri (1.15.5)
mini_portile2 (~> 2.8.2)
racc (~> 1.4)
pathutil (0.16.2)
Expand All @@ -98,7 +98,7 @@ GEM
ruby-rc4
ttfunk
public_suffix (5.0.3)
racc (1.7.1)
racc (1.7.3)
rainbow (3.1.1)
rake (13.0.6)
rb-fsevent (0.11.2)
Expand All @@ -115,20 +115,20 @@ GEM
unicode-display_width (>= 1.1.1, < 3)
timers (4.3.5)
ttfunk (1.7.0)
typhoeus (1.4.0)
typhoeus (1.4.1)
ethon (>= 0.9.0)
uglifier (4.2.0)
execjs (>= 0.3.0, < 3)
unicode-display_width (2.4.2)
webrick (1.8.1)
yell (2.2.2)
zeitwerk (2.6.8)
zeitwerk (2.6.12)

PLATFORMS
ruby

DEPENDENCIES
html-proofer
html-proofer (~> 5.0.8)
jekyll
jekyll-minifier
jekyll-seo-tag
Expand Down
7 changes: 1 addition & 6 deletions Rakefile
Original file line number Diff line number Diff line change
Expand Up @@ -15,12 +15,7 @@ task :default do
check_html: true,
only_4xx: true,
enforce_https: false,
ignore_status_codes: [403],
cache: {
timeframe: {
external: '6w'
}
}
ignore_status_codes: [403, 405]
}

build
Expand Down