Skip to content

Commit 5e65cb3

Browse files
committed
fix: install production mode
1 parent 29d634d commit 5e65cb3

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

.github/workflows/hourly.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,9 +14,9 @@ jobs:
1414
with:
1515
node-version: '12'
1616
- name: Install
17-
run: npm install
17+
run: npm install --production
1818
- name: Update
19-
run: npm start hourly --production
19+
run: npm start hourly
2020
- name: Commit
2121
uses: EndBug/add-and-commit@v5
2222
with:

.github/workflows/weekly.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,9 +14,9 @@ jobs:
1414
with:
1515
node-version: '12'
1616
- name: Install
17-
run: npm install
17+
run: npm install --production
1818
- name: Update
19-
run: npm start weekly --production
19+
run: npm start weekly
2020
- name: Commit
2121
uses: EndBug/add-and-commit@v5
2222
with:

0 commit comments

Comments
 (0)