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.
This commit is contained in:
Steven Enamakel
2026-02-02 07:14:35 +05:30
parent ae43889fac
commit 7daddd64e0
+2 -2
View File
@@ -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