5 Commits
Author SHA1 Message Date
GROKandClaude Opus 5 1dc64c7c13 ci: run on host instead of a container
ci / build-and-design (push) Successful in 1m15s
Containerized jobs on this act_runner fail during setup: the runner
extracts its payload to /var/run/act, /var/run is a symlink to /run in
the Debian job image, and Docker's archive extractor refuses to write
through it ("path escapes from parent"). CI had never passed as a
result -- 19 runs, 19 failures, including the v0.5.0 release commit.

Every other repo on this runner already uses `runs-on: host`. ui-kit
builds no image and deploys nothing, so container isolation buys it
nothing.

Refs #6

Co-Authored-By: Claude Opus 5 <[email protected]>
2026-08-24 22:47:09 -05:00
GROKandClaude Opus 5 efc2238802 chore: release v0.5.1
ci / build-and-design (push) Failing after 2s
Co-Authored-By: Claude Opus 5 <[email protected]>
2026-08-24 22:39:54 -05:00
GROK 292fd70e2a pin light danger to Terracotta #A42D20 (#5)
ci / build-and-design (push) Failing after 2s
Light danger pin; regen CSS. Dark and foregrounds unchanged.
2026-08-24 14:55:20 -05:00
GROK b6fcc7ae00 pin light danger to Terracotta #A42D20 (src/styles/theme.generated.css)
ci / build-and-design (pull_request) Failing after 2s
2026-08-24 14:46:29 -05:00
GROK e27059bfd9 pin light danger to Terracotta #A42D20 (src/lib/tokens.json) 2026-08-24 14:46:28 -05:00
5 changed files with 12 additions and 6 deletions
+7 -1
View File
@@ -6,7 +6,13 @@ on:
jobs: jobs:
build-and-design: build-and-design:
runs-on: ubuntu-latest # `host`, not `ubuntu-latest`. A containerized job on this act_runner dies
# during setup with `mkdirat var/run/act: path escapes from parent` — the
# runner extracts its payload to /var/run/act, and /var/run is a symlink to
# /run in the Debian/Ubuntu job images, which Docker's archive extractor
# refuses to write through. See #6. ui-kit ships no image and deploys
# nothing, so there is nothing to isolate; the job just needs Node + repo.
runs-on: host
steps: steps:
- uses: actions/checkout@v4 - uses: actions/checkout@v4
- uses: actions/setup-node@v4 - uses: actions/setup-node@v4
+2 -2
View File
@@ -1,12 +1,12 @@
{ {
"name": "@jason/ui-kit", "name": "@jason/ui-kit",
"version": "0.5.0", "version": "0.5.1",
"lockfileVersion": 3, "lockfileVersion": 3,
"requires": true, "requires": true,
"packages": { "packages": {
"": { "": {
"name": "@jason/ui-kit", "name": "@jason/ui-kit",
"version": "0.5.0", "version": "0.5.1",
"license": "MIT", "license": "MIT",
"dependencies": { "dependencies": {
"@fontsource-variable/jetbrains-mono": "^5.3.0", "@fontsource-variable/jetbrains-mono": "^5.3.0",
+1 -1
View File
@@ -1,6 +1,6 @@
{ {
"name": "@jason/ui-kit", "name": "@jason/ui-kit",
"version": "0.5.0", "version": "0.5.1",
"description": "Shared design foundation — branded tokens, Tailwind preset, shadcn-style components, motion, app shell + marketing blocks. Guarded by Impeccable.", "description": "Shared design foundation — branded tokens, Tailwind preset, shadcn-style components, motion, app shell + marketing blocks. Guarded by Impeccable.",
"type": "module", "type": "module",
"license": "MIT", "license": "MIT",
+1 -1
View File
@@ -35,7 +35,7 @@
"successForeground": "#FFFFFF", "successForeground": "#FFFFFF",
"warning": "#7A5B00", "warning": "#7A5B00",
"warningForeground": "#FFFFFF", "warningForeground": "#FFFFFF",
"danger": "#9B3D22", "danger": "#A42D20",
"dangerForeground": "#FFFFFF", "dangerForeground": "#FFFFFF",
"info": "#366B99", "info": "#366B99",
"infoForeground": "#FFFFFF" "infoForeground": "#FFFFFF"
+1 -1
View File
@@ -35,7 +35,7 @@
--success-foreground: 0 0% 100%; --success-foreground: 0 0% 100%;
--warning: 45 100% 24%; --warning: 45 100% 24%;
--warning-foreground: 0 0% 100%; --warning-foreground: 0 0% 100%;
--danger: 13 64% 37%; --danger: 6 67% 38%;
--danger-foreground: 0 0% 100%; --danger-foreground: 0 0% 100%;
--info: 208 48% 41%; --info: 208 48% 41%;
--info-foreground: 0 0% 100%; --info-foreground: 0 0% 100%;