Skip to content

Upgrading Blog from v6.2.2 to v7.4.1 #2

Upgrading Blog from v6.2.2 to v7.4.1

Upgrading Blog from v6.2.2 to v7.4.1 #2

Workflow file for this run

name: "Test Build"
on:
push:
branches-ignore:
- main
- master
pull_request:
jobs:
test-build:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Setup Ruby
uses: ruby/setup-ruby@v1
with:
ruby-version: 3.3
bundler-cache: true
- name: Build site
run: bundle exec jekyll build
env:
JEKYLL_ENV: "production"
- name: Test site
run: |
bundle exec htmlproofer _site \
\-\-disable-external \
\-\-ignore-urls "/^http:\/\/127.0.0.1/,/^http:\/\/0.0.0.0/,/^http:\/\/localhost/"