From df529c6c49afc16a9707cfe758e9dadb1869a7e4 Mon Sep 17 00:00:00 2001 From: Albert Hernandez Pellicer Date: Sat, 4 Nov 2023 17:06:26 +0100 Subject: [PATCH] ci: use npm ci instead of npm install in github action --- .github/workflows/nodejs.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/nodejs.yml b/.github/workflows/nodejs.yml index 63afc45..2791947 100644 --- a/.github/workflows/nodejs.yml +++ b/.github/workflows/nodejs.yml @@ -15,9 +15,9 @@ jobs: - name: Npm version run: | npm install npm@10.2 -g - - name: npm install + - name: npm ci run: | - npm install + npm ci - name: npm run build run: | npm run build --if-present