File tree Expand file tree Collapse file tree 2 files changed +35
-0
lines changed
Expand file tree Collapse file tree 2 files changed +35
-0
lines changed Original file line number Diff line number Diff line change 44 branches :
55 - main
66 - master
7+ - upgrade-v7.4.1 # Temporary for testing
78 paths-ignore :
89 - .gitignore
910 - README.md
Original file line number Diff line number Diff line change 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/"
You can’t perform that action at this time.
0 commit comments