From 2c26a48e228e68b86208270bebf475057e585c69 Mon Sep 17 00:00:00 2001 From: ittuann Date: Sun, 9 Apr 2023 17:36:44 +0800 Subject: [PATCH] replace with npm install --- .github/workflows/CI.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/CI.yml b/.github/workflows/CI.yml index 8c1095b..7b2680a 100644 --- a/.github/workflows/CI.yml +++ b/.github/workflows/CI.yml @@ -20,7 +20,7 @@ jobs: uses: actions/setup-node@v3 with: node-version: ${{ matrix.node-version }} - - run: npm ci + - run: npm install - run: npm run build lint: @@ -33,5 +33,5 @@ jobs: uses: actions/setup-node@v3 with: node-version: 14.x - - run: npm ci + - run: npm install - run: npm run lint