Skip to content

chore(deps): bump the web-dependencies group across 1 directory with 19 updates #38

chore(deps): bump the web-dependencies group across 1 directory with 19 updates

chore(deps): bump the web-dependencies group across 1 directory with 19 updates #38

Workflow file for this run

name: CI
on:
push:
branches: [main]
pull_request:
branches: [main]
permissions:
contents: read
jobs:
validate:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@9c091bb21b7c1c1d1991bb908d89e4e9dddfe3e0 # v7.0.0
with:
persist-credentials: false
- name: Validate shell scripts
run: bash -n scripts/*.sh
- name: Validate PowerShell scripts
shell: pwsh
run: |
$errors = @()
Get-ChildItem scripts/*.ps1 | ForEach-Object {
[void][System.Management.Automation.Language.Parser]::ParseFile($_.FullName, [ref]$null, [ref]$errors)
}
if ($errors.Count -gt 0) { $errors | Format-List; exit 1 }
- name: Set up Node.js
uses: actions/setup-node@48b55a011bda9f5d6aeb4c2d9c7362e8dae4041e # v6.4.0
with:
node-version: 24
- name: Install pnpm
run: npm install --global pnpm@11.5.1
- name: Install web dependencies
working-directory: web
run: pnpm install --frozen-lockfile
- name: Audit production dependencies
working-directory: web
run: pnpm audit --prod --audit-level=high
- name: Build web site
working-directory: web
run: pnpm build:cloudflare