Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
148 changes: 83 additions & 65 deletions .github/workflows/macos.yml
Original file line number Diff line number Diff line change
@@ -1,65 +1,83 @@
# This is a basic workflow to help you get started with Actions
name: 'MacOS Build'

# Controls when the action will run.
on:
# Triggers the workflow on push or pull request events but only for the main branch
push:
branches:
- main
pull_request:
branches:
- main

# Allows you to run this workflow manually from the Actions tab
workflow_dispatch:

jobs:
build:
strategy:
matrix:
node-version: [22]

# The type of runner that the job will run on
runs-on: macos-latest

steps:
- uses: actions/checkout@v6

- name: Cache Node modules
uses: actions/cache@v5
with:
# npm cache files are stored in ~/.npm
path: ~/.npm
key: ${{ runner.os }}-node-${{ hashFiles('**/package-lock.json') }}
restore-keys: |
${{ runner.os }}-node-

- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v6
with:
node-version: ${{ matrix.node-version }}

- name: Install macOS dependencies
if: matrix.platform == 'macos-latest'
run: |
brew install gnu-tar coreutils
echo "Homebrew dependencies installed"

- name: Install Dependencies
run: npm ci && npm i -D cli-truncate iconv-corefoundation

- name: Check lint
run: npm run lint

- name: Install Playwright Browsers
run: npx playwright@1.57.0 install --with-deps

- name: Run headless unit test
run: npm run test -- --reporters=default

- name: Run headless e2e test
run: npm run e2e

- name: Build the app
run: npm run electron:build
# This is a basic workflow to help you get started with Actions
name: 'MacOS Build'

# Controls when the action will run.
on:
# Triggers the workflow on push or pull request events but only for the main branch
push:
branches:
- main
pull_request:
branches:
- main

# Allows you to run this workflow manually from the Actions tab
workflow_dispatch:

jobs:
build:
strategy:
matrix:
node-version: [24]

# The type of runner that the job will run on
runs-on: macos-latest

steps:
- uses: actions/checkout@v6

- name: Cache Node modules
uses: actions/cache@v5
with:
# npm cache files are stored in ~/.npm
path: ~/.npm
key: ${{ runner.os }}-node-${{ hashFiles('**/package-lock.json') }}
restore-keys: |
${{ runner.os }}-node-

- name: Cache Electron binaries
uses: actions/cache@v5
with:
path: |
~/Library/Caches/electron
~/Library/Caches/electron-builder
key: ${{ runner.os }}-electron-${{ hashFiles('**/package-lock.json') }}
restore-keys: |
${{ runner.os }}-electron-

- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v6
with:
node-version: ${{ matrix.node-version }}

- name: Install macOS dependencies
if: matrix.platform == 'macos-latest'
run: |
brew install gnu-tar coreutils
echo "Homebrew dependencies installed"

- name: Install Dependencies
uses: nick-fields/retry@v3
with:
timeout_minutes: 10
max_attempts: 3
command: npm ci && npm i -D cli-truncate iconv-corefoundation

- name: Check lint
run: npm run lint

- name: Install Playwright Browsers
run: npx playwright@1.58.2 install --with-deps

- name: Run headless unit test
run: npm run test -- --reporters=default

- name: Run headless e2e test
run: npm run e2e

- name: Build the app
uses: nick-fields/retry@v3
with:
timeout_minutes: 15
max_attempts: 3
command: npm run electron:build
156 changes: 87 additions & 69 deletions .github/workflows/ubuntu.yml
Original file line number Diff line number Diff line change
@@ -1,69 +1,87 @@
# This is a basic workflow to help you get started with Actions
name: 'Linux Build'

# Controls when the action will run.
on:
# Triggers the workflow on push or pull request events but only for the main branch
push:
branches:
- main
pull_request:
branches:
- main

# Allows you to run this workflow manually from the Actions tab
workflow_dispatch:

# A workflow run is made up of one or more jobs that can run sequentially or in parallel
jobs:
build:
strategy:
matrix:
node-version: [22]

# The type of runner that the job will run on
runs-on: ubuntu-22.04

steps:
- uses: actions/checkout@v6

- name: Cache Node modules
uses: actions/cache@v5
with:
# npm cache files are stored in ~/.npm
path: ~/.npm
key: ${{ runner.os }}-node-${{ hashFiles('**/package-lock.json') }}
restore-keys: |
${{ runner.os }}-node-

- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v6
with:
node-version: ${{ matrix.node-version }}

- name: Install linux dependencies
run: |
sudo apt-get update
sudo apt-get install -y libgtk-3-dev webkit2gtk-4.0 libappindicator3-dev librsvg2-dev patchelf

- name: Install Dependencies
run: npm ci

- name: Check lint
run: npm run lint

- name: Install Playwright Browsers
run: npx playwright@1.57.0 install --with-deps

- name: Run headless unit test
uses: GabrielBB/xvfb-action@v1
with:
run: npm run test -- --reporters=default

- name: Run headless e2e test
uses: GabrielBB/xvfb-action@v1
with:
run: npm run e2e

- name: Build the app
run: npm run electron:build
# This is a basic workflow to help you get started with Actions
name: 'Linux Build'

# Controls when the action will run.
on:
# Triggers the workflow on push or pull request events but only for the main branch
push:
branches:
- main
pull_request:
branches:
- main

# Allows you to run this workflow manually from the Actions tab
workflow_dispatch:

# A workflow run is made up of one or more jobs that can run sequentially or in parallel
jobs:
build:
strategy:
matrix:
node-version: [24]

# The type of runner that the job will run on
runs-on: ubuntu-22.04

steps:
- uses: actions/checkout@v6

- name: Cache Node modules
uses: actions/cache@v5
with:
# npm cache files are stored in ~/.npm
path: ~/.npm
key: ${{ runner.os }}-node-${{ hashFiles('**/package-lock.json') }}
restore-keys: |
${{ runner.os }}-node-

- name: Cache Electron binaries
uses: actions/cache@v5
with:
path: |
~/.cache/electron
~/.cache/electron-builder
key: ${{ runner.os }}-electron-${{ hashFiles('**/package-lock.json') }}
restore-keys: |
${{ runner.os }}-electron-

- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v6
with:
node-version: ${{ matrix.node-version }}

- name: Install linux dependencies
run: |
sudo apt-get update
sudo apt-get install -y libgtk-3-dev webkit2gtk-4.0 libappindicator3-dev librsvg2-dev patchelf

- name: Install Dependencies
uses: nick-fields/retry@v3
with:
timeout_minutes: 10
max_attempts: 3
command: npm ci

- name: Check lint
run: npm run lint

- name: Install Playwright Browsers
run: npx playwright@1.58.2 install --with-deps

- name: Run headless unit test
uses: GabrielBB/xvfb-action@v1
with:
run: npm run test -- --reporters=default

- name: Run headless e2e test
uses: GabrielBB/xvfb-action@v1
with:
run: npm run e2e

- name: Build the app
uses: nick-fields/retry@v3
with:
timeout_minutes: 15
max_attempts: 3
command: npm run electron:build
Loading
Loading