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
6 changes: 4 additions & 2 deletions .github/workflows/dev-demo.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,10 @@ on:
push:
branches:
- dev
pull_request:

jobs:
action:
uses: AlaskaAirlines/auro-actions/.github/workflows/dev-demo.yml@dev
uses: AlaskaAirlines/auro-actions/.github/workflows/dev-demo.yml@dev
with:
publish-dir: "./auro-formkit-demo"
build-command: "npm run local-demo:build"
5 changes: 2 additions & 3 deletions .github/workflows/pull-request.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,14 +11,13 @@ jobs:
action:
uses: AlaskaAirlines/auro-actions/.github/workflows/pull-request.yml@dev
with:
component: '["checkbox", "combobox", "counter", "datepicker", "dropdown", "form", "input", "menu", "radio", "select"]'
is-monorepo: true
demo-dir: './auro-formkit-demo'
demo-build-command: 'npm run local-demo'
cache-dirs: |
./components/**/dist
./components/**/demo
./components/**/node_modules
./node_modules
./custom-elements.json
secrets:
AURO_SURGE_TOKEN: $\{{ secrets.AURO_SURGE_TOKEN }}
NPM_TOKEN: $\{{ secrets.NPM_TOKEN }}
2 changes: 1 addition & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -28,5 +28,5 @@ coverage/
.turbo

## ignore all files/folders in generated auro-formkit-demo
auro-formkit-demo/**/*.**
auro-formkit-demo/
auro-formkit-demo.zip
2 changes: 1 addition & 1 deletion components/input/demo/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Auro Web Component Demo | auro-input</title>
<title>Auro Web Component Demo | auro-input test</title>

<!-- Prism.js Stylesheet -->
<link rel="stylesheet" type="text/css" href="https://cdn.jsdelivr.net/npm/prismjs@1.24.1/themes/prism.css"/>
Expand Down
4 changes: 3 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,9 @@
"preCommit": "node ./node_modules/@aurodesignsystem/auro-library/scripts/build/pre-commit.mjs",
"prepare": "husky",
"deploy-demo": "npm run build && sh ./deploy-components.sh",
"local-demo": "npm run build && sh ./local-demo.sh --zip"
"local-demo": "sh ./local-demo.sh",
"local-demo:build": "npm run build && npm run local-demo",
"local-demo:zip": "npm run local-demo:build -- --zip"
},
"dependencies": {
"@lit/context": "^1.1.6",
Expand Down
Loading