Skip to content
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Adding permissions
  • Loading branch information
Kaniska244 committed Sep 23, 2025
commit 5757710cb9d01afd86093cc5b6dac04a4875dc15
3 changes: 3 additions & 0 deletions src/javascript-node/test-project/test.sh
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,10 @@ check-version-ge "npm-requirement" "${npm_version}" "9.8.1"
sudo rm -f yarn.lock
sudo touch yarn.lock
sudo rm -rf .yarn/*
sudo chmod a+rw yarn.lock
sudo mkdir -p .yarn/cache
sudo chown -R $(id -u):$(id -g) .yarn
sudo chmod -R a+rwX .yar
check "yarn" yarn install
sudo rm -f package-lock.json
check "npm" npm install
Expand Down
3 changes: 3 additions & 0 deletions src/typescript-node/test-project/test.sh
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,10 @@ check "node" node --version
sudo rm -f yarn.lock
sudo rm -rf .yarn/*
sudo touch yarn.lock
sudo chmod a+rw yarn.lock
sudo mkdir -p .yarn/cache
sudo chown -R $(id -u):$(id -g) .yarn
sudo chmod -R a+rwX .yarn
check "yarn" yarn install
sudo rm -f package-lock.json
check "eslint" eslint --no-warn-ignored src/server.ts
Expand Down