chore(deps-dev): bump eslint from 8.37.0 to 8.54.0 #377
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Build and test website | |
on: | |
push: | |
branches-ignore: | |
- "dependabot/**" | |
pull_request: | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout Main repo | |
uses: actions/checkout@v4 | |
- name: Set up Ruby | |
uses: actions/setup-ruby@v1 | |
- name: Install Ruby dependencies | |
run: | | |
gem install bundler | |
bundle install --jobs 4 --retry 3 | |
- name: Build with Jekyll | |
run: bundle exec jekyll build | |
- name: Setup Node.js environment | |
uses: actions/setup-node@v3 | |
with: | |
cache: npm | |
- name: Install NPM dependencies | |
run: npm ci | |
- name: Run HTML validator | |
run: npm run vnu-jar | |
# Disable link checking while there are many dead links | |
# - name: Test links | |
# run: npm run link-check |