Skip to content

Bump nokogiri from 1.14.3 to 1.16.2 in /docs #93

Bump nokogiri from 1.14.3 to 1.16.2 in /docs

Bump nokogiri from 1.14.3 to 1.16.2 in /docs #93

name: pages-check-links
# Controls when the workflow will run
on:
push:
branches: [ main ]
pull_request:
# The branches below must be a subset of the branches above
branches: [ main ]
# Allows you to run this workflow manually from the Actions tab
workflow_dispatch:
# A workflow run is made up of one or more jobs that can run sequentially or in parallel
jobs:
# This workflow contains a single job called "build"
build:
# The type of runner that the job will run on
runs-on: ubuntu-latest
# Steps represent a sequence of tasks that will be executed as part of the job
steps:
# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it
- uses: actions/checkout@v3
- name: Setup Ruby
uses: ruby/setup-ruby@v1.113.3
with:
ruby-version: 3.1
- name: Setup Rubygems, Bundler, jekyll
run: |
cd docs/
gem update --system --no-document
gem update bundler --no-document
gem install jekyll bundler
bundle install
- name: Build jekyll website with drafts
run: |
cd docs/
bundle exec jekyll build --drafts
- name: Check for broken links
run: |
cd docs/
bundle exec htmlproofer --ignore-missing-alt=true --log-level :debug ./_site --swap-urls '^/thundernetes/:/' --ignore-status-code 403