Skip to content

Commit

Permalink
Test without double quote and multiple OS
Browse files Browse the repository at this point in the history
  • Loading branch information
muno92 committed Nov 23, 2023
1 parent b667d31 commit c2789d0
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 4 deletions.
6 changes: 5 additions & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,11 @@ jobs:
- run: |
npm run all
e2e_test:
runs-on: windows-latest
runs-on: ${{ matrix.operating-system }}
strategy:
fail-fast: false
matrix:
operating-system: [ ubuntu-latest, windows-latest, macos-latest ]
steps:
- uses: actions/checkout@v4
- uses: actions/setup-dotnet@v3
Expand Down
2 changes: 1 addition & 1 deletion dist/index.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion dist/index.js.map

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion src/main.ts
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ async function run(): Promise<void> {

const properties: string = core.getInput('properties') ?? ''
if (properties) {
command += ` --properties:"${properties}"`
command += ` --properties:${properties}`
}

const workingDir: string = core.getInput('workingDirectory')
Expand Down

0 comments on commit c2789d0

Please sign in to comment.