chore(deps-dev): bump @theia/cli from 1.54.0 to 1.55.0 #7
Workflow file for this run
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: Build Electron | |
on: | |
workflow_dispatch: | |
release: | |
push: | |
paths: | |
- 'electron-app/**' | |
- '.github/workflows/electron.yml' | |
jobs: | |
build: | |
strategy: | |
matrix: | |
node: [ 20 ] | |
os: | |
- ubuntu-latest | |
- windows-latest | |
- macos-latest | |
name: Electron ${{ matrix.os }} Node ${{ matrix.node}} | |
runs-on: ${{ matrix.os }} | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-node@v4 | |
with: | |
node-version: ${{ matrix.node }} | |
- name: 'mac: fixup python' | |
if: runner.os == 'macOS' | |
run: brew install python-setuptools | |
- name: Cache npm repository | |
uses: actions/cache@v4 | |
with: | |
path: ~/.npm | |
key: npm-${{ runner.os }}-electron-${{ hashFiles('**/package.json') }} | |
restore-keys: | | |
npm-${{ runner.os }}-electron- | |
npm- | |
- run: | | |
npm ci | |
# workaround for strange build issue #2 | |
( mkdir -pv node_modules/@theia/application-manager/node_modules/.bin/ && ln -sfv ../../../../.bin/webpack ./node_modules/@theia/application-manager/node_modules/.bin/webpack) | |
# npm run build:browser | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
- name: build electron | |
run: | | |
npm run build:electron | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
- name: package electron | |
if: github.event_name == 'release' || github.event_name == 'workflow_dispatch' | |
run: | | |
npm run package:electron | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
# - TODO: lint | |
# - TODO: test | |
- name: Upload electron artifact | |
if: github.event_name == 'release' || github.event_name == 'workflow_dispatch' | |
uses: actions/upload-artifact@v4 | |
with: | |
name: electron-app | |
path: electron-app/dist/keyman* |