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
Final push
  • Loading branch information
Kaniska244 committed Sep 23, 2025
commit 15aee37029b20c177ba542fb3ebfe72e08fde21b
4 changes: 2 additions & 2 deletions .github/workflows/push-again.yml
Original file line number Diff line number Diff line change
Expand Up @@ -61,8 +61,8 @@ jobs:
# Setup build CLI
cd "$GITHUB_WORKSPACE/ref"
# This is required to set yarn 4.9.4 as the global yarn version in the runner is 1.22.22
corepack enable
corepack prepare yarn@4.9.4 --activate
sudo corepack enable
sudo corepack prepare yarn@4.9.4 --activate
yarn install
npm install -g @devcontainers/cli
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/push-dev.yml
Original file line number Diff line number Diff line change
Expand Up @@ -49,8 +49,8 @@ jobs:
az acr login --name $ACR_REGISTRY_NAME --username $TOKEN_NAME --password $PASSWORD
# This is required to set yarn 4.9.4 as the global yarn version in the runner is 1.22.22
corepack enable
corepack prepare yarn@4.9.4 --activate
sudo corepack enable
sudo corepack prepare yarn@4.9.4 --activate
# Build and push dev images
yarn install
npm install -g @devcontainers/cli
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/push-manual-dev.yml
Original file line number Diff line number Diff line change
Expand Up @@ -57,8 +57,8 @@ jobs:
# Setup build CLI
cd "$GITHUB_WORKSPACE/ref"
# This is required to set yarn 4.9.4 as the global yarn version in the runner is 1.22.22
corepack enable
corepack prepare yarn@4.9.4 --activate
sudo corepack enable
sudo corepack prepare yarn@4.9.4 --activate
yarn install
npm install -g @devcontainers/cli

Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/push.yml
Original file line number Diff line number Diff line change
Expand Up @@ -52,8 +52,8 @@ jobs:
az acr login --name $ACR_REGISTRY_NAME --username $TOKEN_NAME --password $PASSWORD

# This is required to set yarn 4.9.4 as the global yarn version in the runner is 1.22.22
corepack enable
corepack prepare yarn@4.9.4 --activate
sudo corepack enable
sudo corepack prepare yarn@4.9.4 --activate
# Build and push images
yarn install
npm install -g @devcontainers/cli
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/version-history.yml
Original file line number Diff line number Diff line change
Expand Up @@ -65,8 +65,8 @@ jobs:
az acr login --name $ACR_REGISTRY_NAME --username $TOKEN_NAME --password $PASSWORD

# This is required to set yarn 4.9.4 as the global yarn version in the runner is 1.22.22
corepack enable
corepack prepare yarn@4.9.4 --activate
sudo corepack enable
sudo corepack prepare yarn@4.9.4 --activate
yarn install
RELEASE_STRING=$(echo "${{ inputs.release }}" | grep -oP 'refs/(heads|tags)/\K(.+)')
OVERWRITE_STRING=$(if [ "${{ inputs.overwrite }}" = "false" ]; then echo '--no-overwrite'; else echo '--overwrite'; fi)
Expand Down
3 changes: 0 additions & 3 deletions src/javascript-node/test-project/test.sh
Original file line number Diff line number Diff line change
Expand Up @@ -17,9 +17,6 @@ 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: 0 additions & 3 deletions src/typescript-node/test-project/test.sh
Original file line number Diff line number Diff line change
Expand Up @@ -15,9 +15,6 @@ 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