Skip to content

Commit b48f512

Browse files
committed
chore: ci
1 parent 2bc50b6 commit b48f512

File tree

6 files changed

+7
-11
lines changed

6 files changed

+7
-11
lines changed

.github/workflows/ci.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ jobs:
1818
- name: Setup Node
1919
uses: actions/setup-node@v3
2020
with:
21-
node-version: '18.5'
21+
node-version: 18
2222
cache: 'npm'
2323
- name: Install Packages
2424
run: npm ci
@@ -38,7 +38,7 @@ jobs:
3838
- name: Setup Node
3939
uses: actions/setup-node@v3
4040
with:
41-
node-version: '18.5'
41+
node-version: 18
4242
cache: 'npm'
4343
- name: Install Packages
4444
run: npm ci

.github/workflows/main-preview.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ jobs:
1616
- name: Setup Node
1717
uses: actions/setup-node@v3
1818
with:
19-
node-version: '18.5'
19+
node-version: 18
2020
- name: Install Packages
2121
run: npm ci
2222
shell: bash

.github/workflows/pr-preview-build.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,4 +10,4 @@ jobs:
1010
steps:
1111
- uses: gravity-ui/preview-build-action@v1
1212
with:
13-
node-version: 18.5
13+
node-version: 18

.github/workflows/release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,4 +12,4 @@ jobs:
1212
with:
1313
github-token: ${{ secrets.GRAVITY_UI_BOT_GITHUB_TOKEN }}
1414
npm-token: ${{ secrets.GRAVITY_UI_BOT_NPM_TOKEN }}
15-
node-version: '18.5'
15+
node-version: 18

.nvmrc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
18.15
1+
18.17.1

.storybook/preview.tsx

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -38,11 +38,7 @@ const preview: Preview = {
3838
className: 'g-storybook-docs-decorator__canvas',
3939
},
4040
},
41-
// FIXME: Disabled due to performance reasons. See https://github.com/storybookjs/storybook/issues/5551
42-
// actions: {
43-
// argTypesRegex: '^on.*',
44-
// },
45-
jsx: {showFunctions: true}, // To show functions in sources
41+
jsx: {showFunctions: false}, // Do not show functions in sources
4642
viewport: {
4743
viewports: MINIMAL_VIEWPORTS,
4844
},

0 commit comments

Comments
 (0)