Use npm ci for Ansible task

Otherwise Ansible never creates the node_modules directory.
This commit is contained in:
Andrew Shu
2021-08-18 21:36:41 -07:00
committed by Deimos
parent 0dbb031562
commit 996d52b185

View File

@@ -18,3 +18,6 @@
# --no-bin-links option is needed to prevent npm from creating symlinks in the .bin
# directory, which doesn't work inside Vagrant on Windows
no_bin_links: true
# npm ci needs to be run, for a clean install, instead of npm install.
# otherwise node_modules is never created/updated (Ansible bug?)
ci: true