diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index d098ec1..60482fd 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -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 diff --git a/package.json b/package.json index 0a98b19..5854969 100644 --- a/package.json +++ b/package.json @@ -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": {