Skip to content

chore(deps): bump the dependencies group in /website with 2 updates #820

chore(deps): bump the dependencies group in /website with 2 updates

chore(deps): bump the dependencies group in /website with 2 updates #820

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 # for actions/checkout to fetch code
security-events: write # for github/codeql-action/upload-sarif to upload SARIF results
runs-on: ubuntu-latest
steps:
- name: ⬇️ Checkout
uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # v6.0.1
with:
persist-credentials: false
fetch-depth: 0 # Needed for lastUpdated date to be set
- name: ⎔ Setup node
uses: actions/setup-node@395ad3262231945c25e8478fd5baf05154b1d79f # v6.1.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@5d4e8d1aca955e8d8589aabd499c5cae939e33c7 # v4.31.9
with:
sarif_file: website/htmlhint.sarif
category: HTMLHint
if: always()