feat(workflow): add nodejs installation step in perl.yml
Some checks failed
Perl Tests / perl (threaded) (push) Waiting to run
Perl Tests / perl (5.20) (push) Failing after 17s
Perl Tests / perl (latest) (push) Has been cancelled

Integrated a step to install Node.js in the Perl CI workflow.
This ensures that Node.js is available during the workflow
execution, supporting any tasks that rely on it. This change
aims to enhance the workflow's capabilities and flexibility.
This commit is contained in:
Kumi 2024-09-18 20:24:36 +02:00
parent 8403b138bc
commit abdfc8ce9b
Signed by: kumi
GPG key ID: ECBCC9082395383F

View file

@ -32,6 +32,8 @@ jobs:
options: --health-cmd pg_isready --health-interval 10s --health-timeout 5s --health-retries 5
steps:
- name: apt install nodejs
run: apt update && apt install -y nodejs
- uses: actions/checkout@v2
- name: perl -V
run: perl -V