chore(deps-dev): bump electron from 20.3.9 to 22.3.25 #405
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Validate and test | |
on: | |
workflow_dispatch: | |
push: | |
branches: | |
- main | |
pull_request: | |
branches: | |
- main | |
types: [opened, synchronize, reopened, labeled] | |
jobs: | |
validate: | |
name: Validate | |
runs-on: ubuntu-20.04 | |
steps: | |
- name: Check the repository | |
uses: actions/checkout@v2 | |
- name: Validate | |
uses: ./.github/actions/validate | |
with: | |
node-version: 16.x | |
uses-libindy: true | |
tests: | |
name: Tests | |
needs: validate | |
runs-on: ubuntu-20.04 | |
strategy: | |
matrix: | |
node-version: [16.x, 18.x] | |
steps: | |
- name: Check the repository | |
uses: actions/checkout@v2 | |
- name: Test | |
uses: ./.github/actions/test | |
with: | |
node-version: ${{ matrix.node-version }} | |
uses-libindy: true |