Skip to content

Bump dompurify from 3.4.2 to 3.4.4 in the production-dependencies group #13

Bump dompurify from 3.4.2 to 3.4.4 in the production-dependencies group

Bump dompurify from 3.4.2 to 3.4.4 in the production-dependencies group #13

Workflow file for this run

name: CI
on:
push:
branches:
- main
pull_request:
permissions:
contents: read
jobs:
build:
name: Build static export
runs-on: ubuntu-latest
env:
NEXT_TELEMETRY_DISABLED: "1"
NEXT_PUBLIC_SITE_URL: https://immopal.example
GENERATE_HTACCESS: "false"
steps:
- name: Checkout
uses: actions/checkout@v6.0.2
- name: Setup Node.js
uses: actions/setup-node@v6.4.0
with:
node-version: 22
cache: npm
- name: Install dependencies
run: npm ci
- name: Verify
run: npm test
- name: Audit dependencies
run: npm audit --audit-level=moderate
- name: Build
run: npm run build