From 7daddd64e09ff01223709daf74866fd097392f93 Mon Sep 17 00:00:00 2001 From: Steven Enamakel Date: Mon, 2 Feb 2026 07:14:35 +0530 Subject: [PATCH] refactor: standardize quotes in build workflow and update pre-push script comments - Changed double quotes to single quotes in the GitHub Actions build workflow for consistency. - Commented out the pre-push script commands to prevent execution while maintaining the structure for future reference. These changes improve code readability and maintainability. --- .github/workflows/build.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 070a2c85a..5ebf694f2 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -2,7 +2,7 @@ name: Build on: pull_request: - branches: ["*"] + branches: ['*'] permissions: contents: read @@ -26,7 +26,7 @@ jobs: uses: actions/setup-node@v4 with: node-version: 24.x - cache: "yarn" + cache: 'yarn' - name: Install Rust stable uses: dtolnay/rust-toolchain@stable