-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
26 additions
and
8 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,29 +1,47 @@ | ||
name: "Test Operate Installation E2E" | ||
name: "Test Pearl Installation E2E" | ||
on: | ||
push: | ||
branches: | ||
- develop | ||
- main | ||
pull_request: | ||
|
||
jobs: | ||
test: | ||
e2e-test: | ||
continue-on-error: False | ||
|
||
runs-on: ${{ matrix.os }} | ||
|
||
strategy: | ||
matrix: | ||
os: [ubuntu-latest, macos-12, macos-14] | ||
|
||
timeout-minutes: 30 | ||
|
||
steps: | ||
|
||
- uses: actions/checkout@v2 | ||
|
||
- name: Setup Node.js | ||
uses: actions/setup-node@v3 | ||
with: | ||
node-version: "20.11" | ||
- name: Setup | ||
run: | | ||
yarn | ||
# Uninstall brew | ||
sudo bash -c "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/HEAD/uninstall.sh)" | ||
|
||
# - name: Install Yarn | ||
# run: npm install -g yarn | ||
|
||
# - name: Verify Yarn | ||
# run: yarn --version | ||
|
||
# - name: Setup | ||
# run: | | ||
# yarn | ||
# # Uninstall brew | ||
# sudo bash -c "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/HEAD/uninstall.sh)" | ||
|
||
- name: Install node dependencies | ||
run: yarn install | ||
|
||
- name: Run Test | ||
run: | | ||
node electron/test.js | ||
node electron/test.js |