File tree Expand file tree Collapse file tree 2 files changed +7
-6
lines changed
Expand file tree Collapse file tree 2 files changed +7
-6
lines changed Original file line number Diff line number Diff line change @@ -2,12 +2,12 @@ name: Build Theme
22on :
33 push :
44 branches :
5- - develop
65 - main
6+ - develop
77 pull_request :
88 branches :
9- - develop
109 - main
10+ - develop
1111jobs :
1212 build :
1313 runs-on : ubuntu-latest
2020 with :
2121 node-version : 20.x
2222 registry-url : " https://registry.npmjs.org"
23+ cache : " npm"
2324 - name : Install dependencies 📦
24- run : npm install
25+ run : npm ci
2526 - name : Run build lib 🛠️
2627 run : npm run build
Original file line number Diff line number Diff line change 77 runs-on : ubuntu-latest
88 steps :
99 - uses : actions/checkout@v4
10- - name : Use Node.js '20.x'
10+ - name : Setup Node
1111 uses : actions/setup-node@v4
1212 with :
13- node-version : " 20.x"
13+ node-version : 20.x
1414 registry-url : " https://registry.npmjs.org"
1515 - name : Install dependencies 📦
16- run : npm install
16+ run : npm ci
1717 - name : Build lib 🛠️
1818 run : npm run build
1919 - name : Publish NPM lib 📋
You can’t perform that action at this time.
0 commit comments