Skip to content

chore(deps): bump astro from 5.16.3 to 5.16.4 in /website in the dependencies group #796

chore(deps): bump astro from 5.16.3 to 5.16.4 in /website in the dependencies group

chore(deps): bump astro from 5.16.3 to 5.16.4 in /website in the dependencies group #796

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@1af3b93b6815bc44a9784bd300feb67ff0d1eeb3 # v6.0.0
with:
persist-credentials: false
fetch-depth: 0 # Needed for lastUpdated date to be set
- name: ⎔ Setup node
uses: actions/setup-node@2028fbc5c25fe9cf00d9f06a71cc4710d4507903 # v6.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@fdbfb4d2750291e159f0156def62b853c2798ca2 # v4.31.5
with:
sarif_file: website/htmlhint.sarif
category: HTMLHint
if: always()