fix(ci): install Node.js before checkout action
Some checks failed
Lint and Build / lint-and-build (push) Failing after 38s

This commit is contained in:
goose 2026-03-13 10:50:44 -03:00
parent a5db33990e
commit 868ebfd5ab

View file

@ -10,13 +10,20 @@ jobs:
container:
image: rust:1.83-bullseye
steps:
- name: Install Node.js
run: |
apt-get update
apt-get install -y curl gnupg
curl -fsSL https://deb.nodesource.com/setup_20.x | bash -
apt-get install -y nodejs
- name: Checkout code
uses: actions/checkout@v4
- name: Install dependencies
run: |
apt-get update
apt-get install -y git nodejs pkg-config libssl-dev
apt-get install -y pkg-config libssl-dev
- name: Run Clippy
run: cargo clippy --all-targets --all-features -- -D warnings