Skip to content

Commit fdba13b

Browse files
committed
Upgrading to v7.4.1: Temporary Pipeline for testing
1 parent 9080baa commit fdba13b

File tree

2 files changed

+35
-0
lines changed

2 files changed

+35
-0
lines changed

.github/workflows/pages-deploy.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@ on:
44
branches:
55
- main
66
- master
7+
- upgrade-v7.4.1 # Temporary for testing
78
paths-ignore:
89
- .gitignore
910
- README.md

.github/workflows/test-build.yml

Lines changed: 34 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,34 @@
1+
name: "Test Build"
2+
on:
3+
push:
4+
branches-ignore:
5+
- main
6+
- master
7+
pull_request:
8+
9+
jobs:
10+
test-build:
11+
runs-on: ubuntu-latest
12+
13+
steps:
14+
- name: Checkout
15+
uses: actions/checkout@v4
16+
with:
17+
fetch-depth: 0
18+
19+
- name: Setup Ruby
20+
uses: ruby/setup-ruby@v1
21+
with:
22+
ruby-version: 3.3
23+
bundler-cache: true
24+
25+
- name: Build site
26+
run: bundle exec jekyll build
27+
env:
28+
JEKYLL_ENV: "production"
29+
30+
- name: Test site
31+
run: |
32+
bundle exec htmlproofer _site \
33+
\-\-disable-external \
34+
\-\-ignore-urls "/^http:\/\/127.0.0.1/,/^http:\/\/0.0.0.0/,/^http:\/\/localhost/"

0 commit comments

Comments
 (0)