fix: Update runner targets
Some checks failed
Deploy to Staging / Build Images (push) Failing after 6s
Deploy to Staging / Deploy to Staging (push) Has been skipped
Deploy to Staging / Verify Staging (push) Has been skipped
Deploy to Staging / Notify Staging Ready (push) Has been skipped
Deploy to Staging / Notify Staging Failure (push) Successful in 5s
Some checks failed
Deploy to Staging / Build Images (push) Failing after 6s
Deploy to Staging / Deploy to Staging (push) Has been skipped
Deploy to Staging / Verify Staging (push) Has been skipped
Deploy to Staging / Notify Staging Ready (push) Has been skipped
Deploy to Staging / Notify Staging Failure (push) Successful in 5s
This commit is contained in:
@@ -99,6 +99,36 @@
|
||||
state: started
|
||||
enabled: true
|
||||
|
||||
# ============================================
|
||||
# Node.js Installation (required for actions)
|
||||
# ============================================
|
||||
- name: Add NodeSource GPG key
|
||||
shell: |
|
||||
curl -fsSL https://deb.nodesource.com/gpgkey/nodesource-repo.gpg.key | gpg --dearmor -o /etc/apt/keyrings/nodesource.gpg
|
||||
args:
|
||||
creates: /etc/apt/keyrings/nodesource.gpg
|
||||
|
||||
- name: Add NodeSource repository
|
||||
apt_repository:
|
||||
repo: "deb [signed-by=/etc/apt/keyrings/nodesource.gpg] https://deb.nodesource.com/node_20.x nodistro main"
|
||||
state: present
|
||||
filename: nodesource
|
||||
|
||||
- name: Install Node.js
|
||||
apt:
|
||||
name: nodejs
|
||||
state: present
|
||||
update_cache: true
|
||||
|
||||
- name: Verify Node.js installation
|
||||
command: node --version
|
||||
register: node_check
|
||||
changed_when: false
|
||||
|
||||
- name: Display Node.js version
|
||||
debug:
|
||||
msg: "Node.js version: {{ node_check.stdout }}"
|
||||
|
||||
# ============================================
|
||||
# act_runner Installation
|
||||
# ============================================
|
||||
|
||||
Reference in New Issue
Block a user