File tree Expand file tree Collapse file tree 12 files changed +16279
-25193
lines changed
Expand file tree Collapse file tree 12 files changed +16279
-25193
lines changed Original file line number Diff line number Diff line change 1818 - name : Setup Node
1919 uses : actions/setup-node@v2
2020 with :
21- node-version : 18
21+ node-version : 20
2222 cache : npm
2323 - name : Install Packages
2424 run : npm ci
3838 - name : Setup Node
3939 uses : actions/setup-node@v2
4040 with :
41- node-version : 18
41+ node-version : 20
4242 cache : npm
4343 - name : Install Packages
4444 run : npm ci
Original file line number Diff line number Diff line change 1616 - name : Setup Node
1717 uses : actions/setup-node@v2
1818 with :
19- node-version : 18
19+ node-version : 20
2020 - name : Install Packages
2121 run : npm ci
2222 shell : bash
Original file line number Diff line number Diff line change 1313 - uses : actions/checkout@v4
1414 - uses : actions/setup-node@v4
1515 with :
16- node-version : 18
16+ node-version : 20
1717 cache : npm
1818 - name : Install dependencies
1919 run : npm ci
Original file line number Diff line number Diff line change 1010 steps :
1111 - uses : gravity-ui/preview-build-action@v2
1212 with :
13- node-version : 18
13+ node-version : 20
Original file line number Diff line number Diff line change 2626 - uses : actions/checkout@v4
2727 - uses : actions/setup-node@v4
2828 with :
29- node-version : 18
29+ node-version : 20
3030 registry-url : ' https://registry.npmjs.org'
3131 - name : Install Packages
3232 run : npm ci
Original file line number Diff line number Diff line change 1212 with :
1313 github-token : ${{ secrets.GRAVITY_UI_BOT_GITHUB_TOKEN }}
1414 npm-token : ${{ secrets.GRAVITY_UI_BOT_NPM_TOKEN }}
15- node-version : 18
15+ node-version : 20
1616 npm-dist-tag : untagged
1717 default-branch : v3
Original file line number Diff line number Diff line change 1212 with :
1313 github-token : ${{ secrets.GRAVITY_UI_BOT_GITHUB_TOKEN }}
1414 npm-token : ${{ secrets.GRAVITY_UI_BOT_NPM_TOKEN }}
15- node-version : 18
15+ node-version : 20
Original file line number Diff line number Diff line change 1- 18
1+ 20
Original file line number Diff line number Diff line change @@ -8,12 +8,20 @@ const config: StorybookConfig = {
88 {
99 name : '@storybook/addon-essentials' ,
1010 options : {
11- controls : false ,
1211 actions : false ,
12+ backgrounds : false ,
13+ controls : false ,
14+ measure : false ,
15+ outline : false ,
16+ toolbars : true ,
17+ viewport : false ,
18+ docs : true ,
1319 } ,
1420 } ,
1521 '@storybook/preset-scss' ,
22+ '@storybook/addon-webpack5-compiler-swc' ,
1623 ] ,
24+
1725 framework : {
1826 name : '@storybook/react-webpack5' ,
1927 options : { fastRefresh : true } ,
Original file line number Diff line number Diff line change @@ -11,7 +11,7 @@ const BUILD_DIR = path.resolve('build');
1111
1212task ( 'clean' , ( done ) => {
1313 rimraf . sync ( BUILD_DIR ) ;
14- rimraf . sync ( 'styles/**/*.css' , { glob : true } ) ;
14+ rimraf . sync ( 'styles/**/*.css' , { glob : true } ) ;
1515 done ( ) ;
1616} ) ;
1717
You can’t perform that action at this time.
0 commit comments