Shorted generic- to gen-

This commit is contained in:
2025-07-09 03:55:24 +02:00
parent 8c411a21c7
commit 94bb060a5b
123 changed files with 96 additions and 96 deletions

View File

@@ -0,0 +1,12 @@
- name: Ensure npm is installed
package:
name: npm
state: present
- name: Run 'npm ci'
command: npm ci
args:
chdir: "{{ npm_project_folder }}"
when: npm_project_folder is defined
register: npm_output
changed_when: "'added' in npm_output.stdout or 'updated' in npm_output.stdout"