Skip to content

Bump electron from 36.5.0 to 36.8.1 in /packages/app/electron #1429

Bump electron from 36.5.0 to 36.8.1 in /packages/app/electron

Bump electron from 36.5.0 to 36.8.1 in /packages/app/electron #1429

Workflow file for this run

name: CI
concurrency:
group: ci-${{ github.ref }}
cancel-in-progress: true
on:
workflow_dispatch:
push:
branches:
- 'main'
pull_request:
branches:
- 'main'
jobs:
build:
name: Build & Test
timeout-minutes: 60
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 #v5.0.0
- uses: actions/setup-node@49933ea5288caeca8642d1e84afbd3f7d6820020 # v4.4.0
with:
node-version: 20.x
- name: Build
working-directory: ./packages/app/default
#run: yarn --skip-integrity-check --no-lockfile --network-timeout 100000
run: yarn --immutable --network-timeout 100000
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} # https://github.com/microsoft/vscode-ripgrep/issues/9
#- name: Check for uncommitted changes in yarn.lock
# run: |
# if git diff --name-only | grep -q "^yarn.lock"; then
# echo "::error::The yarn.lock file has uncommitted changes!"
# exit 1
# fi
#- name: Create eslint json report
# run: |
# yarn lint:ci
#- name: Create summary
# run: |
# npm_config_yes=true npx github:10up/eslint-json-to-md#82ff16b --path ./eslint_report.json --output ./eslint_report.md
# cat eslint_report.md >> $GITHUB_STEP_SUMMARY
- name: Build all Modules
run: yarn run build
env:
NODE_OPTIONS: --max_old_space_size=65536
- name: Build browser
working-directory: ./packages/app/default
run: yarn run build-only
env:
NODE_OPTIONS: --max_old_space_size=65536
- name: Cache Build Output
uses: actions/cache/save@0400d5f644dc74513175e3cd8d07132dd4860809 # v4.2.4
with:
path: ./packages/app/default/dist
key: build-cache-${{ github.sha }}