From 6457fdae22d17ea91bf6fdbf4b248b228f0c7b7e Mon Sep 17 00:00:00 2001 From: woksin Date: Sun, 23 Aug 2026 17:01:52 +0200 Subject: [PATCH 1/2] Fix releases from main merges --- .github/workflows/publish.yml | 2 -- 1 file changed, 2 deletions(-) diff --git a/.github/workflows/publish.yml b/.github/workflows/publish.yml index 63eaa0c3..c3f12820 100644 --- a/.github/workflows/publish.yml +++ b/.github/workflows/publish.yml @@ -36,8 +36,6 @@ on: # branch that is released. branches: - main - paths: - - main permissions: contents: write From 275d28ed1172e8ef2cd865404b3c1d675e275dc3 Mon Sep 17 00:00:00 2001 From: woksin Date: Sun, 23 Aug 2026 17:03:18 +0200 Subject: [PATCH 2/2] Verify current Arc and Storybook compatibility --- .github/workflows/javascript-build.yml | 13 ++++++++++++- 1 file changed, 12 insertions(+), 1 deletion(-) diff --git a/.github/workflows/javascript-build.yml b/.github/workflows/javascript-build.yml index 118c7cbb..6d084ba1 100644 --- a/.github/workflows/javascript-build.yml +++ b/.github/workflows/javascript-build.yml @@ -17,11 +17,19 @@ on: - 'main' paths: - 'Source/**' + - 'package.json' + - 'rollup.config.mjs' + - 'yarn.lock' + - '.github/workflows/javascript-build.yml' pull_request: branches: - '**' paths: - 'Source/**' + - 'package.json' + - 'rollup.config.mjs' + - 'yarn.lock' + - '.github/workflows/javascript-build.yml' permissions: contents: read @@ -58,6 +66,9 @@ jobs: export NODE_OPTIONS="--max-old-space-size=4096" yarn ci + - name: Build Storybook + run: yarn workspace @cratis/components build-storybook + # Builds the artifact that actually ships to npm (the `prepare` script: tsc -b + # rollup + copy-css) and loads every subpath of the `exports` map from it. # @@ -113,7 +124,7 @@ jobs: strategy: fail-fast: false matrix: - arc-version: ['20.3.1', '21.19.4', '22.0.1'] + arc-version: ['20.3.1', '21.19.4', '22.1.0'] steps: - name: Checkout code