ci: install nodejs before running actions/checkout@v4

This commit is contained in:
2026-09-06 22:34:16 -07:00
parent 9580c9d367
commit 6314d82d03
+6
View File
@@ -17,6 +17,9 @@ jobs:
name: Test & Lint
runs-on: rust
steps:
- name: Install Node.js
run: apt-get update && apt-get install -y nodejs
- name: Checkout code
uses: actions/checkout@v4
@@ -32,6 +35,9 @@ jobs:
needs: test
if: github.event_name == 'push'
steps:
- name: Install Node.js
run: apt-get update && apt-get install -y nodejs
- name: Checkout code
uses: actions/checkout@v4