Skip to content

Commit 95a486e

Browse files
Merge pull request #371 from eccenca/release/v25.1.0
Release v25.1.0 into main branch
2 parents ea0bdf1 + 0cdb721 commit 95a486e

270 files changed

Lines changed: 11784 additions & 4908 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

.github/workflows/create-release-branch.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ jobs:
2222
- uses: actions/checkout@main
2323
- uses: actions/setup-node@main
2424
with:
25-
node-version: "18"
25+
node-version: "lts/krypton"
2626
- name: Check and save dispatched branch
2727
id: dispatched-branch
2828
run: |

.github/workflows/deployment-storybook.yml

Lines changed: 13 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,15 +5,19 @@ on:
55
paths:
66
- "src/**"
77
- ".storybook/**"
8+
- ".github/workflows/deployment-storybook.yml"
89
- "index.ts"
10+
- package.json
911
- yarn.lock
1012
push:
1113
branches:
1214
- "develop"
1315
paths:
1416
- "src/**"
1517
- ".storybook/**"
18+
- ".github/workflows/deployment-storybook.yml"
1619
- "index.ts"
20+
- package.json
1721
- yarn.lock
1822

1923
jobs:
@@ -24,15 +28,22 @@ jobs:
2428
- uses: actions/checkout@main
2529
with:
2630
fetch-depth: 0
31+
- name: Workflow git state
32+
run: |
33+
echo github.ref: ${{ github.ref }}
34+
echo github.event_name: ${{ github.event_name }}
35+
echo github.actor: ${{ github.actor }}
36+
git status
37+
git log --oneline -1
2738
- uses: actions/setup-node@main
2839
with:
29-
node-version: "18"
40+
node-version: "lts/krypton"
3041
- name: Install dependencies
3142
run: yarn install
3243
- name: Create jest results
3344
run: yarn test:generate-output
3445
- name: Publish to Chromatic
35-
uses: chromaui/action@v11
46+
uses: chromaui/action@main
3647
with:
3748
token: ${{ secrets.GITHUB_TOKEN }}
3849
projectToken: ${{ secrets.CHROMATIC_PROJECT_TOKEN }}

.github/workflows/publish-featurefix-prerelease.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ jobs:
4242
git config user.email "${{ github.actor }}@users.noreply.github.com"
4343
- uses: actions/setup-node@main
4444
with:
45-
node-version: "18"
45+
node-version: "lts/krypton"
4646
- name: Create pre-release version number
4747
run: |
4848
preid=$(echo ${{ steps.branch-name.outputs.current_branch }} | tr '[:upper:]' '[:lower:]' | sed 's=[^[:alnum:][:space:]"]==g')

.github/workflows/publish-final-release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ jobs:
4343
git config user.email "${{ github.actor }}@users.noreply.github.com"
4444
- uses: actions/setup-node@main
4545
with:
46-
node-version: "18"
46+
node-version: "lts/krypton"
4747
- name: Get version
4848
id: package-version
4949
run: echo "version=$(node -p -e "require('./package.json').version.split('-').shift()")" >> $GITHUB_OUTPUT

.github/workflows/publish-release-candidate.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ jobs:
3939
git config user.email "${{ github.actor }}@users.noreply.github.com"
4040
- uses: actions/setup-node@main
4141
with:
42-
node-version: "18"
42+
node-version: "lts/krypton"
4343
- name: Create release candidate version number
4444
run: |
4545
preid="rc"

.github/workflows/push-tagged-release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ jobs:
3636
ref: ${{ inputs.ref }}
3737
- uses: actions/setup-node@main
3838
with:
39-
node-version: "18"
39+
node-version: "lts/krypton"
4040
registry-url: "https://registry.npmjs.org"
4141
- name: Set name vars
4242
id: info-vars

.github/workflows/test-code.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@ name: "🧪 Test: code"
33
on:
44
pull_request:
55
paths:
6+
- ".github/workflows/test-code.yml"
67
- "src/**.js"
78
- "src/**.ts"
89
- "src/**.tsx"
@@ -19,7 +20,7 @@ jobs:
1920
- name: Test using Node.js
2021
uses: actions/setup-node@main
2122
with:
22-
node-version: "18"
23+
node-version: "lts/krypton"
2324
- run: yarn install
2425
- run: yarn compile
2526
- run: yarn compile-scss

.storybook/main.js

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,12 @@ module.exports = {
6464
},
6565
webpackFinal: async (config, { configType }) => {
6666
// `configType` has a value of 'DEVELOPMENT' or 'PRODUCTION'
67-
67+
if (configType === "PRODUCTION") {
68+
// remove source maps from production storybook
69+
// this may lead to errors when it is created via github workers
70+
// reason is currently not known
71+
config.devtool = false;
72+
}
6873
config.module.rules = [
6974
{
7075
test: /\.(png|jpg|gif|svg)(\\?.*)?$/,

.storybook/preview.js

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,14 @@ export const decorators = [
1919
];
2020

2121
export const parameters = {
22-
actions: { argTypesRegex: "^on[A-Z].*" },
22+
options: {
23+
storySort: {
24+
order: ["Configuration", "Components", "Forms", "Extensions", "CMEM", "*"],
25+
},
26+
},
27+
actions: {
28+
argTypesRegex: "^on[A-Z].*",
29+
},
2330
controls: {
2431
matchers: {
2532
color: /(background|color)$/i,

.typescript/tsbuild-esm.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"extends": "./../tsconfig.json",
33
"compilerOptions": {
4-
"lib": ["dom", "dom.iterable", "es2015", "es2020", "es2021", "es2015.collection", "es2015.iterable"],
4+
"lib": ["dom", "dom.iterable", "es2015", "es2020", "es2021", "es2022.intl", "es2015.collection", "es2015.iterable"],
55
"module": "es2015",
66
"target": "es5",
77
"noEmit": false,

0 commit comments

Comments
 (0)