From ee5f067069c5a151a70b657ede7e6f833e626e01 Mon Sep 17 00:00:00 2001 From: Pyrox Date: Mon, 1 May 2023 14:52:38 -0400 Subject: [PATCH] fix: Commit CI not running because cargo is not installed --- .woodpecker/commit.yml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.woodpecker/commit.yml b/.woodpecker/commit.yml index 6bb1b2d81..827ebc81d 100644 --- a/.woodpecker/commit.yml +++ b/.woodpecker/commit.yml @@ -2,6 +2,9 @@ pipeline: testCommit: image: node:latest commands: + - apt-get update + - apt-get install -y cargo + - rm -rf /var/lib/apt/lists/* - cp .config/ci.yml .config/default.yml - corepack enable - corepack prepare pnpm@latest --activate