From 3a3d16a72f306308f220ef03e6c3a3454d77e9c1 Mon Sep 17 00:00:00 2001 From: Felix Hofmann Date: Sat, 17 Aug 2024 23:42:14 +0200 Subject: [PATCH] build: Switch from 'npm ci' to 'npm install'. The 'npm install' command is now used instead of 'npm ci' to install dependencies. This change ensures compatibility with the current project setup and resolves issues encountered during the installation process in the build pipeline. --- .github/workflows/preparePublish.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/preparePublish.yml b/.github/workflows/preparePublish.yml index 6cd0a4b..ac9f0b4 100644 --- a/.github/workflows/preparePublish.yml +++ b/.github/workflows/preparePublish.yml @@ -31,7 +31,7 @@ jobs: git config user.email "<>" git config pull.rebase true - name: Install dependencies - run: npm ci + run: npm install - name: Bump version run: | npx changeset version