-
Notifications
You must be signed in to change notification settings - Fork 19
38 lines (36 loc) · 1.03 KB
/
theia-compat.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
name: Theia Compatibility
on:
workflow_dispatch:
push:
branches: [master]
schedule:
- cron: '0 8 * * 1' # Every Monday at 8 AM UTC
jobs:
build:
name: Build
runs-on: ubuntu-latest
strategy:
matrix:
theia_version: [1.49.1, latest]
steps:
- uses: actions/[email protected]
- uses: actions/[email protected]
with:
node-version: 18.x
- uses: actions/[email protected]
with:
python-version: '3.11'
- name: Build
run: yarn --skip-integrity-check --network-timeout 100000
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} # https://github.com/microsoft/vscode-ripgrep/issues/9
- name: Change theia version
run: yarn change:theia-version ${{ matrix.theia_version }}
- name: Build electron
run: yarn electron build
env:
NODE_OPTIONS: --max_old_space_size=4096
- name: Build browser
run: yarn browser build
env:
NODE_OPTIONS: --max_old_space_size=4096