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"