Skip to content

Commit 8b06cf8

Browse files
committed
I have no idea why one evaluates to true and the other evalutes to false
1 parent 72e6c0e commit 8b06cf8

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

.github/workflows/pull-request.yml

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@ jobs:
6363
runs-on: ${{ matrix.os }}
6464
defaults:
6565
run:
66-
working-directory: ${{ matrix.os == 'windows-latest' && matrix.lib.windowsDirectory || matrix.lib.directory }}
66+
# working-directory: ${{ matrix.os == 'windows-latest' && matrix.lib.windowsDirectory || matrix.lib.directory }}
6767
shell: ${{ matrix.os == 'windows-latest' && 'pwsh' || 'bash' }}
6868

6969
name: ${{ matrix.lib.name }} library (${{ matrix.os }})
@@ -81,7 +81,9 @@ jobs:
8181
playwright: ${{ matrix.lib.changes && matrix.lib.needsPlaywright }}
8282
shell: ${{ matrix.os == 'windows-latest' && 'pwsh' || 'bash' }}
8383
- name: Echo cwd
84-
run: echo ${{ matrix.os == 'windows-latest' && matrix.lib.windowsDirectory || matrix.lib.directory }}
84+
run: |
85+
echo ${{ matrix.lib.windowsDirectory}}
86+
echo ${{ matrix.lib.directory }}
8587
8688
- name: Echo cwd
8789
working-directory: ${{ matrix.os == 'windows-latest' && matrix.lib.windowsDirectory || matrix.lib.directory }}

0 commit comments

Comments
 (0)