From b48d2b22cb1eb759ea294e5eab78f1cb30bb4bd0 Mon Sep 17 00:00:00 2001 From: "Dylan R. E. Moonfire" Date: Thu, 18 Nov 2021 01:39:00 -0600 Subject: [PATCH] build: do not need "run" to install npm --- .gitlab-ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 08c5ed4..677a084 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -24,7 +24,7 @@ default: build: stage: build script: - - nix-shell --run "npm run install --ci" + - nix-shell --run "npm install --ci" - nix-shell --run "npx commitlint-gitlab-ci -x @commitlint/config-conventional" - nix-shell --run "npm run build"