Skip to content

chore(deps-dev): bump electron from 13.2.2 to 24.4.0 #1551

chore(deps-dev): bump electron from 13.2.2 to 24.4.0

chore(deps-dev): bump electron from 13.2.2 to 24.4.0 #1551

Workflow file for this run

name: Node CI
on:
push:
pull_request:
jobs:
build:
strategy:
fail-fast: false
matrix:
os: [ubuntu-20.04, windows-latest]
node: [ '14', '16' ]
include:
- os: windows-latest
commandPrefix: ''
- os: ubuntu-20.04
commandPrefix: xvfb-run
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v3
- name: Setup Node
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node }}
cache: yarn
- name: yarn install
run: yarn install
- name: yarn test
run: ${{ matrix.commandPrefix }} yarn test --runInBand --coverage
env:
CI: true
- name: Upload coverage to Codecov
if: runner.os == 'Linux'
uses: codecov/codecov-action@v3
with:
token: ${{secrets.CODECOV_TOKEN}}
file: ./coverage/clover.xml