Skip to content

chore(deps): bump svgo from 4.0.1 to 4.0.2 in /website #983

chore(deps): bump svgo from 4.0.1 to 4.0.2 in /website

chore(deps): bump svgo from 4.0.1 to 4.0.2 in /website #983

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:
permissions:
contents: read
jobs:
build:
permissions:
contents: read
security-events: write
runs-on: ubuntu-latest
if: ${{ github.actor != 'dependabot[bot]' }}
steps:
- name: ⬇️ Checkout
uses: actions/checkout@9c091bb21b7c1c1d1991bb908d89e4e9dddfe3e0 # v7.0.0
with:
persist-credentials: false
fetch-depth: 0 # Needed for lastUpdated date to be set
- name: ⎔ Setup node
uses: actions/setup-node@48b55a011bda9f5d6aeb4c2d9c7362e8dae4041e # v6.4.0
with:
node-version: '22'
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@8aad20d150bbac5944a9f9d289da16a4b0d87c1e # v4.36.2
with:
sarif_file: website/htmlhint.sarif
category: HTMLHint
if: always()