From cd819df51fe609f5c1ffd56d45a9052b06c596b6 Mon Sep 17 00:00:00 2001 From: "sho.kuroda" Date: Mon, 23 Mar 2020 18:28:57 +0900 Subject: [PATCH] chore: Change `npm ci` to `npm install` because of lock file not exists --- .github/workflows/testing.yml | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/.github/workflows/testing.yml b/.github/workflows/testing.yml index 2470492..eff7a41 100644 --- a/.github/workflows/testing.yml +++ b/.github/workflows/testing.yml @@ -11,11 +11,10 @@ jobs: steps: - uses: actions/checkout@v2 - - uses: actions/setup-node@v1 with: node-version: 12.x - - run: npm ci + - run: npm install - name: Run smoke tests timeout-minutes: 2