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.
This commit is contained in:
parent
8403b138bc
commit
abdfc8ce9b
1 changed files with 2 additions and 0 deletions
2
.github/workflows/perl.yml
vendored
2
.github/workflows/perl.yml
vendored
|
@ -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
|
||||
|
|
Loading…
Reference in a new issue