Skip to content

Commit 7653c9b

Browse files
committed
Remove html and css validation tests
1 parent 379f181 commit 7653c9b

File tree

4 files changed

+9
-58
lines changed

4 files changed

+9
-58
lines changed

.github/workflows/ci.yml

Lines changed: 0 additions & 49 deletions
Original file line numberDiff line numberDiff line change
@@ -57,52 +57,3 @@ jobs:
5757
env:
5858
BUNDLE_GEMFILE: fixtures/Gemfile-github-pages
5959

60-
validate:
61-
name: Validate HTML
62-
strategy:
63-
fail-fast: false
64-
matrix:
65-
ruby-version: ["3.4"]
66-
runs-on: ubuntu-latest
67-
68-
steps:
69-
- uses: actions/checkout@v4
70-
- name: Setup Ruby ${{ matrix.ruby-version }}
71-
uses: ruby/setup-ruby@v1
72-
with:
73-
ruby-version: ${{ matrix.ruby-version }}
74-
bundler-cache: true # runs 'bundle install' and caches installed gems automatically
75-
cache-version: 0 # Increment this number if you need to re-download cached gems
76-
- name: Cache HTMLProofer
77-
id: cache-htmlproofer
78-
uses: actions/cache@v4
79-
with:
80-
path: tmp/.htmlproofer
81-
key: ${{ runner.os }}-htmlproofer
82-
- name: Build Site
83-
run: bundle exec jekyll build
84-
- name: Test with Nu Validator
85-
uses: Cyb3r-Jak3/html5validator-action@8c6ac0aa42df299c0322ce9980fed61c10930a66
86-
with:
87-
config: fixtures/html5validator-config.yml
88-
- name: Test with html-proofer
89-
run: bundle exec htmlproofer _site --ignore-urls "/github.com/,/web.archive.org/,/flickr.com/"
90-
env:
91-
NOKOGIRI_USE_SYSTEM_LIBRARIES: true
92-
93-
assets:
94-
name: Test CSS and JS
95-
runs-on: ubuntu-latest
96-
97-
strategy:
98-
matrix:
99-
node-version: [22.x]
100-
101-
steps:
102-
- uses: actions/checkout@v4
103-
- name: Use Node.js ${{ matrix.node-version }}
104-
uses: actions/setup-node@v4
105-
with:
106-
node-version: ${{ matrix.node-version }}
107-
- run: npm install
108-
- run: npm test

Gemfile

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,6 @@ gem "jekyll-include-cache", group: :jekyll_plugins
1010
gem "jekyll-sitemap", group: :jekyll_plugins
1111
gem "html-proofer", "~> 5.0", :group => :development
1212

13-
gem 'jekyll-paginate'
14-
gem 'jekyll-gist'
15-
gem 'jekyll-admin'
13+
gem "jekyll-paginate"
14+
gem "jekyll-gist"
15+
gem "jekyll-admin"

fixtures/Gemfile-jekyll-3.9

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -16,9 +16,9 @@ gem "jekyll-sitemap", group: :jekyll_plugins
1616
gem "webrick", "~> 1.7"
1717
gem "kramdown-parser-gfm", '~> 1.1'
1818

19-
gem 'jekyll-paginate'
20-
gem 'jekyll-gist'
21-
gem 'jekyll-admin'
19+
gem "jekyll-paginate"
20+
gem "jekyll-gist"
21+
gem "jekyll-admin"
2222

2323
# docs-only
2424
gem "jekyll-github-metadata", ">= 2.15"

fixtures/Gemfile-jekyll-4.3

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -11,9 +11,9 @@ gem "rake", ">= 12.3.1"
1111
gem "jekyll-include-cache", group: :jekyll_plugins
1212
gem "jekyll-sitemap", group: :jekyll_plugins
1313

14-
gem 'jekyll-paginate'
15-
gem 'jekyll-gist'
16-
gem 'jekyll-admin'
14+
gem "jekyll-paginate"
15+
gem "jekyll-gist"
16+
gem "jekyll-admin"
1717

1818
# docs-only
1919
gem "jekyll-github-metadata", ">= 2.15"

0 commit comments

Comments
 (0)