File tree Expand file tree Collapse file tree 3 files changed +62
-0
lines changed
Expand file tree Collapse file tree 3 files changed +62
-0
lines changed Original file line number Diff line number Diff line change 1+ name : CI (Stack)
2+
3+ on :
4+ push :
5+ pull_request :
6+ workflow_dispatch :
7+
8+ jobs :
9+ stack-gated :
10+ name : stack-gated
11+ runs-on : ubuntu-latest
12+ steps :
13+ - uses : actions/checkout@v4
14+
15+ - uses : pnpm/action-setup@v4
16+ with :
17+ version : 10.6.3
18+
19+ - uses : actions/setup-node@v4
20+ with :
21+ node-version : " 20"
22+ cache : pnpm
23+
24+ - name : Install
25+ run : pnpm install
26+
27+ - name : Lint
28+ run : pnpm lint
29+
30+ - name : Test
31+ run : pnpm test
32+
33+ - name : Typecheck
34+ run : pnpm typecheck
35+
36+ - name : Build
37+ run : pnpm build
Original file line number Diff line number Diff line change @@ -14,6 +14,13 @@ Generalized static presentation template using Next.js and TypeScript.
1414- A baseline for static public sites.
1515- Includes common pages and static export-ready configuration.
1616
17+ ## Use This Template
18+
19+ 1 . Click ** Use this template** on GitHub to create a new repository.
20+ 2 . Rename package/module identifiers and update ownership metadata.
21+ 3 . Review ` .env.example ` and update environment configuration for your target project.
22+ 4 . Run validation and CI checks before first release.
23+
1724## Quickstart
1825
1926### Prerequisites
Original file line number Diff line number Diff line change 1+ # Security Policy
2+
3+ ## Reporting a Vulnerability
4+ Please report suspected security vulnerabilities privately and do not open public issues containing exploit details.
5+
6+ Use the maintainers channel for this repository and include:
7+ - affected repository and commit/tag
8+ - impact summary
9+ - reproduction details
10+ - proposed mitigation (if available)
11+
12+ ## Disclosure Expectations
13+ - We will acknowledge receipt as quickly as possible.
14+ - We will triage, validate, and prioritize remediation based on impact.
15+ - Coordinated disclosure is expected; avoid public disclosure until a fix or mitigation is available.
16+
17+ ## Scope
18+ This policy applies to source code, workflows, and release artifacts maintained in this repository.
You can’t perform that action at this time.
0 commit comments