Skip to content

Commit

Permalink
updating CI
Browse files Browse the repository at this point in the history
  • Loading branch information
agracio committed Dec 6, 2024
1 parent 37266a3 commit 962b03a
Showing 1 changed file with 19 additions and 1 deletion.
20 changes: 19 additions & 1 deletion .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -83,10 +83,28 @@ jobs:

name: Resolve latest electron versions
steps:

- name: Checkout code
uses: actions/checkout@v4

- name: Cache node modules
id: cache-nodemodules
uses: actions/cache@v4
env:
cache-name: cache-node-modules
with:
path: node_modules
key: ${{ runner.os }}-${{ hashFiles('package-lock.json') }}

- name: Setup dotnet
uses: actions/setup-dotnet@v4
with:
dotnet-version: '8.0.x' # SDK Version to use; x will use the latest version of the 8.0 channel

- name: npm install
shell: bash
run: npm i

- name: Get latest Electron versions for 29, 30, 31, 32, 33
id: electron-versions
shell: bash
Expand Down

0 comments on commit 962b03a

Please sign in to comment.