File tree Expand file tree Collapse file tree 2 files changed +11
-2
lines changed
Expand file tree Collapse file tree 2 files changed +11
-2
lines changed Original file line number Diff line number Diff line change @@ -2,14 +2,23 @@ name: Build docs
22on :
33 push :
44 branches :
5- - master
5+ - main
66jobs :
77 build-and-deploy :
88 runs-on : ubuntu-latest
99 steps :
1010 - name : Checkout 🛎️
11111212
13+ - name : Enable Corepack
14+ run : corepack enable
15+
16+ - name : Use Node.js 20.x
17+ uses : actions/setup-node@v4
18+ with :
19+ node-version : ' 20.x'
20+ cache : ' yarn'
21+
1322 - name : Install and build docs 🔧
1423 run : |
1524 yarn
Original file line number Diff line number Diff line change 1616 "scripts" : {
1717 "prepare" : " husky" ,
1818 "prepublishOnly" : " yarn run lint && yarn run build" ,
19- "lint" : " eslint src && eslint examples " ,
19+ "lint" : " eslint src && eslint stories " ,
2020 "watch" : " tsup --watch" ,
2121 "build" : " tsup --clean" ,
2222 "dev" : " storybook dev -p 6006" ,
You can’t perform that action at this time.
0 commit comments