Skip to content

chore(deps): update dependency cssnano to v7.1.7 #70

chore(deps): update dependency cssnano to v7.1.7

chore(deps): update dependency cssnano to v7.1.7 #70

Workflow file for this run

name: CI
on:
push:
branches: [main]
tags: ['**']
pull_request:
branches: [main]
merge_group:
workflow_dispatch:
schedule:
- cron: '0 0 * * 0'
permissions:
contents: read
jobs:
go-check:
uses: netresearch/.github/.github/workflows/go-check.yml@main
with:
enable-smoke-fast-feedback: true
enable-fuzz: true
enable-license-check: true
enable-codecov: true
enable-integration-tests: true
enable-e2e-tests: true
# The e2e suite spins up an OpenLDAP testcontainer, installs Playwright
# browsers, and starts ldap-manager in-process before driving it via a
# headless Chromium. Coverage is reported under the "e2e" Codecov flag
# (see .github/codecov.yml) so unit / integration / e2e numbers remain
# separable. Only the internal/e2e package is gated by the build tag.
e2e-test-packages: "./internal/e2e/..."
# Exclude the auto-generated internal/web/templates package from the
# coverage calculation: the *_templ.go files are produced by the templ
# CLI and contain many framework-internal defer/error branches that
# cannot be reached from unit tests. Authored-code coverage is the
# metric that matters for the fleet-wide 80% floor.
test-flags: "-race -covermode=atomic -coverprofile=coverage.out -coverpkg=github.com/netresearch/ldap-manager/cmd/...,github.com/netresearch/ldap-manager/internal/ldap_cache/...,github.com/netresearch/ldap-manager/internal/options/...,github.com/netresearch/ldap-manager/internal/retry/...,github.com/netresearch/ldap-manager/internal/version/...,github.com/netresearch/ldap-manager/internal/web"
setup-bun: true
pre-build-cmd: "go install github.com/a-h/templ/cmd/templ@latest && bun install --frozen-lockfile && bun run build:assets"
permissions:
contents: read
security-events: write
secrets:
CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }}