From ef2b0d07109f37bd3740627b8cac34606ac69b9c Mon Sep 17 00:00:00 2001 From: Andrew Zakordonets Date: Tue, 15 Sep 2020 13:10:14 +0200 Subject: [PATCH] =?UTF-8?q?chore:=20fix=20test=20command=20in=20actions=20?= =?UTF-8?q?ss=20=E2=9C=85?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .github/workflows/integrate.yml | 2 +- .github/workflows/push_to_master.yml | 2 +- .github/workflows/push_to_npm.yml | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/integrate.yml b/.github/workflows/integrate.yml index 475bd60..f481bd5 100644 --- a/.github/workflows/integrate.yml +++ b/.github/workflows/integrate.yml @@ -17,6 +17,6 @@ jobs: - name: "🕐 install" run: npm install - name: "🚦 lint&test" - run: npm test:prod + run: npm run test:prod - name: "🏗 build" run: npm run build diff --git a/.github/workflows/push_to_master.yml b/.github/workflows/push_to_master.yml index f97d227..6bb2582 100644 --- a/.github/workflows/push_to_master.yml +++ b/.github/workflows/push_to_master.yml @@ -17,6 +17,6 @@ jobs: - name: "🕐 install" run: npm install - name: "🚦 lint&test" - run: npm test:prod + run: npm run test:prod - name: "🏗 build" run: npm run build diff --git a/.github/workflows/push_to_npm.yml b/.github/workflows/push_to_npm.yml index 9676e7e..5693a87 100644 --- a/.github/workflows/push_to_npm.yml +++ b/.github/workflows/push_to_npm.yml @@ -18,7 +18,7 @@ jobs: - name: "🕐 install" run: npm install - name: "🏗 build" - run: npm build:prod + run: npm run build:prod - name: "🚀 publish" run: npm publish --access public env: