Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
17 changes: 17 additions & 0 deletions .devcontainer/devcontainer.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
{
"name": "node-template",
"image": "mcr.microsoft.com/devcontainers/javascript-node:22",
"postCreateCommand": "corepack enable && pnpm install",
"customizations": {
"vscode": {
"extensions": [
"dbaeumer.vscode-eslint",
"esbenp.prettier-vscode"
],
"settings": {
"editor.formatOnSave": true,
"editor.defaultFormatter": "esbenp.prettier-vscode"
}
}
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
# Source: theholocron/holocron · packages/cli/src/commands/setup-workflows.ts
# Tool: holocron sync-github
# Changes: edit source in theholocron/holocron and push to alpha or main.
name: Deploy Docs
name: Deploy

on: # yamllint disable-line rule:truthy
push:
Expand All @@ -21,7 +21,10 @@ permissions:
id-token: write

jobs:
deploy-docs:
name: Deploy Docs
uses: theholocron/.github/.github/workflows/deploy-docs.yml@main
deploy:
name: Deploy
uses: theholocron/.github/.github/workflows/deploy.yml@main
with:
type: docs
name: node-template
secrets: inherit
6 changes: 1 addition & 5 deletions holocron.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -23,11 +23,7 @@ export default defineConfig({
...workflows,
"audit",
{ name: "release", with: { "run-build": true } },
{
name: "deploy-docs",
with: { name: "node-template", "use-turbo": false },
paths: ["docs/**"],
},
{ name: "deploy", with: { type: "docs", name: "node-template" }, paths: ["docs/**"] },
],
providers: {
...providers,
Expand Down
Loading