Skip to content

Commit

Permalink
update electron, node and os versions on gh actions
Browse files Browse the repository at this point in the history
  • Loading branch information
gingerbenw committed Apr 22, 2024
1 parent ddd37cb commit 0608171
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions .github/workflows/test-electron.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,13 +8,13 @@ jobs:
runs-on: ${{ matrix.os }}
strategy:
matrix:
electron: [ '^28.0.0', '^29.0.0', '^30.0.0' ]
node-version: [18, 20]
os: [ ubuntu-22.04, windows-2019 ]
electron: [ '^20.0.0', '^22.0.0', '^24.0.0', '^28.0.0', '^30.0.0' ]
node-version: [18]
os: [ ubuntu-latest, windows-latest ]

steps:
- uses: actions/checkout@v2
- uses: actions/setup-node@v2
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
- name: (Act) install build tools and dependencies
Expand All @@ -29,7 +29,7 @@ jobs:
if: ${{ !env.ACT }}
run: |
echo "::set-output name=dir::$(npm config get cache)"
- uses: actions/cache@v2
- uses: actions/cache@v4
id: npm-cache
if: ${{ !env.ACT }}
with:
Expand Down Expand Up @@ -66,7 +66,7 @@ jobs:
START_LOCAL_NPM: 1
VERBOSE: 1
ELECTRON_VERSION: ${{ matrix.electron }}
- uses: actions/upload-artifact@v2
- uses: actions/upload-artifact@v4
if: failure()
with:
name: cucumber-failures
Expand Down

0 comments on commit 0608171

Please sign in to comment.