Skip to content
Open
Show file tree
Hide file tree
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
10 changes: 8 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,13 +17,19 @@ jobs:
strategy:
matrix:
os: [macos-latest, windows-latest, ubuntu-22.04]
node: [20, 18]
electron: [30, 28, 23]
node: [22, 20]
electron: [34, 32, 30]
exclude:
# there's an issue with signals in retry-cli on linux in node 20 🤷‍♀️
- os: ubuntu-22.04
node: 20
include:
- os: windows-latest
electron: 28
node: 18
- os: ubuntu-22.04
node: 18
electron: 23
- os: ubuntu-22.04
node: 16
electron: 20
Expand Down
3 changes: 2 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,8 @@
"lint": "eslint bin src",
"test": "mocha --timeout 20000 --retries=1",
"ciinspect": "xvfb-maybe electron --version",
"citest": "xvfb-maybe retry -n 3 -- npm test",
"citest": "xvfb-maybe npm test",
"citest-retry": "xvfb-maybe retry -n 3 -- npm test",
"fixture": "cd fixtures && node ../bin/cli.js ."
},
"repository": {
Expand Down