Skip to content

Commit 038c8f8

Browse files
committed
Fixed action script
1 parent bfd06f7 commit 038c8f8

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)