File tree Expand file tree Collapse file tree 1 file changed +14
-10
lines changed
Expand file tree Collapse file tree 1 file changed +14
-10
lines changed Original file line number Diff line number Diff line change 1313jobs :
1414 build_angular :
1515 runs-on : ubuntu-latest
16- env :
17- TELERIK_LICENSE : ${{secrets.TELERIK_LICENSE_KEY}}
1816
1917 steps :
2018 - name : Checkout
2119 uses : actions/checkout@v4
2220
2321 - name : Install NPM modules
2422 working-directory : src/Kendo/angular_demo
25- run : npm install
26-
27- - name : Activate Kendo UI License
28- working-directory : src/Kendo/angular_demo
29- run : npx kendo-ui-license activate
23+ run : |
24+ # 1. Clean the angular cache, to avoid using any expired keys
25+ rm -rf .angular/cache
3026
31- - name : Build
32- working-directory : src/Kendo/angular_demo
33- run : npm run build --prod
27+ # 2. Install your project dependencies
28+ npm install
29+ # npm install --save @progress/kendo-licensing; # if missing from package.json
30+
31+ #3. Activate
32+ npx kendo-ui-license activate
33+
34+ #4. Build the project
35+ npm run build --prod
36+ env :
37+ TELERIK_LICENSE : ${{secrets.TELERIK_LICENSE_KEY}}
You can’t perform that action at this time.
0 commit comments