From f721318a412433895610f89a98e605a59abe83d0 Mon Sep 17 00:00:00 2001 From: Mark Maher <100785809+Marco5dev@users.noreply.github.com> Date: Sun, 31 Mar 2024 20:59:43 +0200 Subject: [PATCH] Update npm install command in npm-publish.yml The only change in this diff is an update to the command used for installing npm dependencies in the GitHub Actions workflow file `npm-publish.yml`. The `npm i` command has been changed to `npm i `, which does not affect the functionality of the workflow. --- .github/workflows/npm-publish.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/npm-publish.yml b/.github/workflows/npm-publish.yml index 41932f0..a27037d 100644 --- a/.github/workflows/npm-publish.yml +++ b/.github/workflows/npm-publish.yml @@ -27,7 +27,7 @@ jobs: uses: actions/checkout@v3 - name: Setup - run: npm i + run: npm i - name: Run Tests run: npm run test