Skip to content

Commit b8ba957

Browse files
authored
Revert "Refactor code (#507)" (#509)
This reverts commit 3d4e108.
1 parent 3d4e108 commit b8ba957

File tree

4 files changed

+10
-5
lines changed

4 files changed

+10
-5
lines changed

.github/workflows/pr_check_webapp_dotnet_windows.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,7 @@ jobs:
7171
- name: Installing dependencies and building latest changes
7272
run: |
7373
cd webapps-deploy
74-
npm ci
74+
npm install
7575
npm run package
7676
7777
- name: Azure authentication

.github/workflows/pr_check_windows_container_pubprofile.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -92,7 +92,7 @@ jobs:
9292
- name: Installing dependencies and building latest changes in action
9393
run: |
9494
cd webapps-deploy
95-
npm ci
95+
npm install
9696
npm run package
9797
9898
- name: 'Deploy to Azure WebApp'

.github/workflows/release.yml

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -85,8 +85,13 @@ jobs:
8585
echo "export const VERSION = '${{ env.TAG_NAME }}';" >> src/version.ts
8686
cat src/version.ts
8787
88-
- name: Build and bundle
89-
run: npm run package
88+
- name: Build TypeScript
89+
run: npm run build
90+
91+
- name: Bundle with ncc
92+
run: |
93+
npm install -g @vercel/ncc
94+
ncc build lib/main.js -o dist
9095
9196
- name: Configure Git
9297
run: |

.github/workflows/test-release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -74,7 +74,7 @@ jobs:
7474
cache: 'npm'
7575

7676
- name: Install dependencies
77-
run: npm ci
77+
run: npm install
7878

7979
- name: Update version file
8080
run: |

0 commit comments

Comments
 (0)