Skip to content

Commit 66aab23

Browse files
author
github-actions
committed
Updates
0 parents  commit 66aab23

20 files changed

+12631
-0
lines changed

.editorconfig

Lines changed: 29 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,29 @@
1+
# EditorConfig helps developers define and maintain consistent
2+
# coding styles between different editors and IDEs
3+
# editorconfig.org
4+
5+
root = true
6+
7+
8+
[*]
9+
10+
# Change these settings to your own preference
11+
indent_style = space
12+
indent_size = 2
13+
14+
# We recommend you to keep these unchanged
15+
end_of_line = lf
16+
charset = utf-8
17+
trim_trailing_whitespace = true
18+
insert_final_newline = true
19+
20+
[*.md]
21+
trim_trailing_whitespace = false
22+
23+
[*.json]
24+
indent_size = 2
25+
26+
[*.{html,js,md}]
27+
block_comment_start = /**
28+
block_comment = *
29+
block_comment_end = */
Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
name: Continuous Deployment
2+
on:
3+
push:
4+
branches:
5+
- main
6+
7+
jobs:
8+
ci-cd:
9+
permissions:
10+
contents: write
11+
pull-requests: write
12+
uses: OMICRONEnergyOSS/oscd-gh-workflows/.github/workflows/continuous-deployment.yml@main
13+
secrets:
14+
gh_token: ${{ secrets.GITHUB_TOKEN }}
Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
name: Release Please
2+
on:
3+
push:
4+
branches:
5+
- main
6+
7+
jobs:
8+
release:
9+
permissions:
10+
contents: write
11+
issues: write
12+
pull-requests: write
13+
id-token: write
14+
uses: OMICRONEnergyOSS/oscd-gh-workflows/.github/workflows/release-please.yml@main
15+
secrets:
16+
npm_token: ${{ secrets.NPM_TOKEN }}
17+
gh_token: ${{ secrets.GITHUB_TOKEN }}

.github/workflows/test.yml

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
name: Unit Tests
2+
on:
3+
push:
4+
branches:
5+
- main
6+
7+
jobs:
8+
test:
9+
permissions:
10+
contents: write
11+
pull-requests: write
12+
uses: OMICRONEnergyOSS/oscd-gh-workflows/.github/workflows/unit-tests.yml@main

.gitignore

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
node_modules
2+
*.tsbuildinfo
3+
4+
## editors
5+
/.idea
6+
/.vscode
7+
8+
## build artifacts
9+
dist
10+
coverage
11+
doc
12+
13+

.husky/commit-msg

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
npx --no -- commitlint --edit $1

.husky/pre-commit

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
npx lint-staged

.release-please-manifest.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
{ ".": "0.0.0" }

demo/assets/de-BadDkCzR.js

Lines changed: 15 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

demo/index.html

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
<html><head><title>oscd-template-menu demo</title><link rel="stylesheet" href="https://fonts.googleapis.com/css2?family=Roboto+Mono:wght@300&amp;family=Roboto:wght@300;400;500&amp;display=swap"><link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Material+Symbols+Outlined&amp;display=block"></head><body><oscd-shell></oscd-shell><style>*{--oscd-theme-text-font:'Roboto';--oscd-theme-icon-font:'Material Symbols Outlined';margin:0;padding:0}abbr{text-decoration:none;border-bottom:none}</style><script type="module" src="./inline-module-de7882cbb3fda1a32685e9cb5006df5d.js"></script></body></html>

0 commit comments

Comments
 (0)