From abdfc8ce9b2c5d09204850834ffc4d1ab95daa26 Mon Sep 17 00:00:00 2001 From: Kumi Date: Wed, 18 Sep 2024 20:24:36 +0200 Subject: [PATCH] feat(workflow): add nodejs installation step in perl.yml 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. --- .github/workflows/perl.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.github/workflows/perl.yml b/.github/workflows/perl.yml index b7bd016..5f463d4 100644 --- a/.github/workflows/perl.yml +++ b/.github/workflows/perl.yml @@ -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