Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add support for Unix wildcard and multiple platforms #33

Closed
wants to merge 4 commits into from

Commits on Oct 25, 2024

  1. Add support for Unix wildcard and multiple platforms

    Add support for wildcard "*" and comma-separated values for platform-specific commands.
    
    * **source/index.ts**
      - Add logic to handle "*" wildcard for Unix platforms.
      - Add logic to handle comma-separated values for multiple platforms.
    
    * **test/package.json**
      - Add test cases for "*" wildcard.
      - Add test cases for comma-separated values.
    
    * **test/test.ts**
      - Add unit tests for "*" wildcard on Unix platforms.
      - Add unit tests for comma-separated values on Unix platforms.
    
    * **README.md**
      - Update documentation to include usage of "*" wildcard.
      - Update documentation to include usage of comma-separated values.
    
    ---
    
    For more details, open the [Copilot Workspace session](https://copilot-workspace.githubnext.com/milewski/cross-os?shareId=XXXX-XXXX-XXXX-XXXX).
    milewski committed Oct 25, 2024
    Configuration menu
    Copy the full SHA
    30fa982 View commit details
    Browse the repository at this point in the history
  2. Create a GitHub Actions workflow to run tests on push and pull reques…

    …t events
    
    * Use `actions/checkout@v2` to check out the repository
    * Use `actions/setup-node@v2` to set up Node.js
    * Run `npm install` to install dependencies
    * Run `npm test` to execute tests
    milewski committed Oct 25, 2024
    Configuration menu
    Copy the full SHA
    c8e7fd8 View commit details
    Browse the repository at this point in the history
  3. Include the current branch in GitHub Actions workflow to allow tests …

    …to run
    
    * Modify `push` event to include the current branch
    * Modify `pull_request` event to include the current branch
    milewski committed Oct 25, 2024
    Configuration menu
    Copy the full SHA
    5bcc5c6 View commit details
    Browse the repository at this point in the history
  4. No commit message

    milewski committed Oct 25, 2024
    Configuration menu
    Copy the full SHA
    1e91d73 View commit details
    Browse the repository at this point in the history