Skip to content

Commit 9879e6d

Browse files
authored
chore(standards): apply doctrine-aligned baseline updates (#1)
* chore(standards): apply doctrine-aligned baseline updates * ci(stack): remove lockfile-dependent node cache setting
1 parent bccdc3e commit 9879e6d

File tree

3 files changed

+61
-0
lines changed

3 files changed

+61
-0
lines changed

.github/workflows/ci-stack.yml

Lines changed: 36 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,36 @@
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+
23+
- name: Install
24+
run: pnpm install
25+
26+
- name: Lint
27+
run: pnpm lint
28+
29+
- name: Test
30+
run: pnpm test
31+
32+
- name: Typecheck
33+
run: pnpm typecheck
34+
35+
- name: Build
36+
run: pnpm build

README.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,13 @@ Generalized modular product web app template using Next.js and TypeScript.
1414
- A baseline app shell for feature-module oriented products.
1515
- Includes neutral module registry contracts and extension seams.
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

SECURITY.md

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
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.

0 commit comments

Comments
 (0)