Replace npm with deno in CI workflow and update dependency checks

This commit is contained in:
Luis Eduardo
2025-02-05 01:46:05 +00:00
parent f40e73ba85
commit f4b4a67b84
2 changed files with 2 additions and 3 deletions
+1 -1
View File
@@ -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 &&
+1 -2
View File
@@ -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"