Skip to content

Commit 6051a8d

Browse files
Merge pull request #116 from anveshmuppeda/dev
Update deployment workflows to use 'npm ci' and 'npm run build' for c…
2 parents ba57e16 + 21379b7 commit 6051a8d

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

.github/workflows/deploy.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,9 +21,9 @@ jobs:
2121
cache: npm
2222

2323
- name: Install dependencies
24-
run: npm install --frozen-lockfile
24+
run: npm ci
2525
- name: Build website
26-
run: npm build
26+
run: npm run build
2727

2828
- name: Upload Build Artifact
2929
uses: actions/upload-pages-artifact@v3

.github/workflows/test-deploy.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,6 @@ jobs:
2121
cache: npm
2222

2323
- name: Install dependencies
24-
run: npm install --frozen-lockfile
24+
run: npm ci
2525
- name: Test build website
26-
run: npm build
26+
run: npm run build

0 commit comments

Comments
 (0)