From c2c1870c2145e0b85b675bacbab67d3212a5577d Mon Sep 17 00:00:00 2001 From: Eric Schultz Date: Fri, 18 Jan 2019 17:05:20 -0600 Subject: [PATCH] Correct bug where ci doesn't work as root. Why did it work before? *shrug* --- script/test.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/script/test.sh b/script/test.sh index 38faac5c..0c12e3d6 100755 --- a/script/test.sh +++ b/script/test.sh @@ -1,2 +1,2 @@ #!/bin/bash -npm ci && rake db:create db:structure:load db:migrate && RAILS_ENV=test rake db:create db:structure:load test:prepare && rake spec && npm run build-all && npx jest \ No newline at end of file +npm ci --unsafe-perm && rake db:create db:structure:load db:migrate && RAILS_ENV=test rake db:create db:structure:load test:prepare && rake spec && npm run build-all && npx jest \ No newline at end of file