Add Node.js setup to Alpine Linux build workflow
Some checks failed
Build Alpine Package / build-alpine (push) Failing after 41s
Build Debian Package / build-debian (push) Successful in 1m27s

- Include Node.js setup step in Alpine build job
- Use actions/setup-node@v3 to prepare Node.js environment
This commit is contained in:
2025-02-01 06:24:54 +00:00
parent 2fbc59be7f
commit 7fbd3fb29a

View File

@@ -17,6 +17,9 @@ jobs:
container: alpine:latest
steps:
- name: Setup Node.js
uses: actions/setup-node@v3
- name: Checkout repository
uses: actions/checkout@v3
with: