Skip to content

chore(deps): bump vite from 6.3.5 to 6.3.6 in /website in the npm_and_yarn group across 1 directory #669

chore(deps): bump vite from 6.3.5 to 6.3.6 in /website in the npm_and_yarn group across 1 directory

chore(deps): bump vite from 6.3.5 to 6.3.6 in /website in the npm_and_yarn group across 1 directory #669

Workflow file for this run

name: Website
on:
pull_request:
paths:
- website/**
- .github/workflows/website.yml
push:
branches-ignore:
- dependabot/**
paths:
- website/**
- .github/workflows/website.yml
workflow_dispatch:
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: ⬇️ Checkout
uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0
with:
persist-credentials: false
- name: ⎔ Setup node
uses: actions/setup-node@a0853c24544627f65ddf259abe73b1d18a591444 # v5.0.0
with:
cache: npm
cache-dependency-path: website/package-lock.json
- name: 📥 Download deps
run: |
cd website
npm ci
- name: Run build
run: |
cd website
npm run build
- name: Run HTMLHint (SARIF)
run: |
cd website
npm run htmlhint-sarif || true
# Continue even if HTMLHint finds issues
- name: Upload SARIF file
uses: github/codeql-action/upload-sarif@f1f6e5f6af878fb37288ce1c627459e94dbf7d01 # v3.30.1
with:
sarif_file: website/htmlhint.sarif
category: HTMLHint
if: always()