From dcc7b29c3f8a90cf6526344fd2116f459da5a14a Mon Sep 17 00:00:00 2001 From: rmenner Date: Tue, 13 Jan 2026 21:07:24 -0500 Subject: [PATCH 1/4] Update page title for Auro Web Component Demo to specify 'auro-input test' --- components/input/demo/index.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/components/input/demo/index.html b/components/input/demo/index.html index 42d822f..e76c317 100644 --- a/components/input/demo/index.html +++ b/components/input/demo/index.html @@ -3,7 +3,7 @@ - Auro Web Component Demo | auro-input + Auro Web Component Demo | auro-input test From 54b5cc3df99dfe57eed35e4ed615fae9660d2712 Mon Sep 17 00:00:00 2001 From: rmenner Date: Thu, 15 Jan 2026 20:34:25 -0500 Subject: [PATCH 2/4] fix: add GitHub Actions workflow updates and new demo script - Update dev-demo.yml to include publish directory and build command for demo - Remove unused AURO_SURGE_TOKEN from pull-request.yml - Add 'gh-demo' script to package.json for building demo --- .github/workflows/dev-demo.yml | 5 ++++- .github/workflows/pull-request.yml | 1 - package.json | 1 + 3 files changed, 5 insertions(+), 2 deletions(-) diff --git a/.github/workflows/dev-demo.yml b/.github/workflows/dev-demo.yml index 472af67..9397ede 100644 --- a/.github/workflows/dev-demo.yml +++ b/.github/workflows/dev-demo.yml @@ -8,4 +8,7 @@ on: jobs: action: - uses: AlaskaAirlines/auro-actions/.github/workflows/dev-demo.yml@dev \ No newline at end of file + uses: AlaskaAirlines/auro-actions/.github/workflows/dev-demo.yml@dev + with: + publish-dir: "./auro-formkit-demo" + build-command: "npm run gh-demo" \ No newline at end of file diff --git a/.github/workflows/pull-request.yml b/.github/workflows/pull-request.yml index 2c20da0..d0848ce 100644 --- a/.github/workflows/pull-request.yml +++ b/.github/workflows/pull-request.yml @@ -20,5 +20,4 @@ jobs: ./node_modules ./custom-elements.json secrets: - AURO_SURGE_TOKEN: $\{{ secrets.AURO_SURGE_TOKEN }} NPM_TOKEN: $\{{ secrets.NPM_TOKEN }} \ No newline at end of file diff --git a/package.json b/package.json index 9a175a2..1927066 100644 --- a/package.json +++ b/package.json @@ -50,6 +50,7 @@ "preCommit": "node ./node_modules/@aurodesignsystem/auro-library/scripts/build/pre-commit.mjs", "prepare": "husky", "deploy-demo": "npm run build && sh ./deploy-components.sh", + "gh-demo": "npm run build && sh ./local-demo.sh", "local-demo": "npm run build && sh ./local-demo.sh --zip" }, "dependencies": { From 69836bdd9dae5ccd7a4016016deb23cf772ed714 Mon Sep 17 00:00:00 2001 From: rmenner Date: Fri, 16 Jan 2026 16:44:35 -0500 Subject: [PATCH 3/4] fix: update build commands in workflows and package.json for local demo --- .github/workflows/dev-demo.yml | 2 +- .github/workflows/pull-request.yml | 4 ++-- .gitignore | 2 +- package.json | 5 +++-- 4 files changed, 7 insertions(+), 6 deletions(-) diff --git a/.github/workflows/dev-demo.yml b/.github/workflows/dev-demo.yml index 9397ede..aa5c688 100644 --- a/.github/workflows/dev-demo.yml +++ b/.github/workflows/dev-demo.yml @@ -11,4 +11,4 @@ jobs: uses: AlaskaAirlines/auro-actions/.github/workflows/dev-demo.yml@dev with: publish-dir: "./auro-formkit-demo" - build-command: "npm run gh-demo" \ No newline at end of file + build-command: "npm run local-demo:build" \ No newline at end of file diff --git a/.github/workflows/pull-request.yml b/.github/workflows/pull-request.yml index d0848ce..ca76333 100644 --- a/.github/workflows/pull-request.yml +++ b/.github/workflows/pull-request.yml @@ -11,8 +11,8 @@ 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 diff --git a/.gitignore b/.gitignore index af31cc6..9cdb19b 100644 --- a/.gitignore +++ b/.gitignore @@ -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 \ No newline at end of file diff --git a/package.json b/package.json index 1927066..e332e5c 100644 --- a/package.json +++ b/package.json @@ -50,8 +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", - "gh-demo": "npm run build && sh ./local-demo.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", From a420e74c46bec3fe5a7c18abed000e8eaaf3c540 Mon Sep 17 00:00:00 2001 From: rmenner Date: Fri, 16 Jan 2026 17:21:03 -0500 Subject: [PATCH 4/4] fix: remove pull_request trigger from dev-demo workflow --- .github/workflows/dev-demo.yml | 1 - 1 file changed, 1 deletion(-) diff --git a/.github/workflows/dev-demo.yml b/.github/workflows/dev-demo.yml index aa5c688..b5217e6 100644 --- a/.github/workflows/dev-demo.yml +++ b/.github/workflows/dev-demo.yml @@ -4,7 +4,6 @@ on: push: branches: - dev - pull_request: jobs: action: