mirror of
https://github.com/tinyhumansai/openhuman.git
synced 2026-07-28 13:32:23 +00:00
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:
@@ -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
|
||||
|
||||
Reference in New Issue
Block a user