Skip to content

Commit

Permalink
fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
mxschmitt committed May 1, 2024
1 parent 8ae543d commit 801ebae
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/actions/run-test/action.yml
Expand Up @@ -34,7 +34,7 @@ runs:
steps:
- uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
node-version: ${{ inputs.node-version }}
# https://github.com/actions/runner-images/issues/9330
- name: Allow microphone access to all apps (macOS 14)
shell: bash
Expand All @@ -44,14 +44,14 @@ runs:
sqlite3 $HOME/Library/Application\ Support/com.apple.TCC/TCC.db "INSERT OR IGNORE INTO access VALUES ('kTCCServiceMicrophone','/usr/local/opt/runner/provisioner/provisioner',1,2,4,1,NULL,NULL,0,'UNUSED',NULL,0,1687786159,NULL,NULL,'UNUSED',1687786159);"
fi
- run: npm ci
shell: ${{ inputs.shell }}
shell: bash
env:
DEBUG: pw:install
PLAYWRIGHT_SKIP_BROWSER_DOWNLOAD: '1'
- run: npm run build
shell: ${{ inputs.shell }}
shell: bash
- run: npx playwright install --with-deps ${{ inputs.browsers-to-install }}
shell: ${{ inputs.shell }}
shell: bash
- name: Run tests
if: inputs.shell == 'bash'
run: |
Expand Down

0 comments on commit 801ebae

Please sign in to comment.