Skip to content

Bump vite from 7.3.1 to 8.0.0 #140

Bump vite from 7.3.1 to 8.0.0

Bump vite from 7.3.1 to 8.0.0 #140

Workflow file for this run

name: Links
on:
pull_request:
workflow_dispatch:
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
check-links:
name: Check Links
runs-on: ubuntu-latest
env:
BUNDLE_JOBS: 3
steps:
- name: Clone repository
uses: actions/checkout@v6
- name: Install Ruby
uses: ruby/setup-ruby@v1
with:
bundler-cache: true
- name: Install Node
uses: actions/setup-node@v6
with:
node-version-file: '.tool-versions'
cache: yarn
- name: Install JS Deps
run: yarn install --frozen-lockfile
- name: Compile site
run: bundle exec rake compile
- name: Check links
uses: lycheeverse/lychee-action@8646ba30535128ac92d33dfc9133794bfdd9b411 # v2
with:
args: '--root-dir ${{ github.workspace }}/output output/**/*.html'
fail: true