Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 3 additions & 2 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ jobs:
electron_version: latest
experimental: true
- os: windows-latest
node_version: latest
node_version: builtin # For an unknown reason, setup-node freezes
electron_version: latest
experimental: true

Expand All @@ -59,14 +59,15 @@ jobs:
- uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node_version }}
if: matrix.node_version != 'builtin'

- run: npm config set script-shell 'bash'
if: runner.os == 'Windows'

- run: npm install

- run: npm install -D electron@${{ matrix.electron_version }}
if: ${{ matrix.electron_version != 'latest' }}
if: matrix.electron_version != 'latest'

- run: |
if [ "${RUNNER_OS}" = 'Linux' ]; then
Expand Down