From f4b4a67b84e1abe6ae5373935e7c3afcae68b840 Mon Sep 17 00:00:00 2001 From: Luis Eduardo Date: Wed, 5 Feb 2025 01:46:05 +0000 Subject: [PATCH] Replace npm with deno in CI workflow and update dependency checks --- .github/workflows/lint-test-build.yaml | 2 +- scripts/check_deps.sh | 3 +-- 2 files changed, 2 insertions(+), 3 deletions(-) diff --git a/.github/workflows/lint-test-build.yaml b/.github/workflows/lint-test-build.yaml index 375ff09..4add10b 100644 --- a/.github/workflows/lint-test-build.yaml +++ b/.github/workflows/lint-test-build.yaml @@ -44,7 +44,7 @@ jobs: run: > docker run --rm -v $PWD:/app pgbackweb:latest /bin/bash -c " cd /app && - npm install && + deno install && go mod download && task fixperms && task check-deps && diff --git a/scripts/check_deps.sh b/scripts/check_deps.sh index 2273135..49a390b 100644 --- a/scripts/check_deps.sh +++ b/scripts/check_deps.sh @@ -15,8 +15,7 @@ check_command() { # Check software from docker images check_command "go version" "Golang" -check_command "node --version" "Node.js" -check_command "npm --version" "npm" +check_command "deno --version" "Deno" # Check software installed from apt install check_command "wget --version" "wget"