Skip to content

Commit

Permalink
feat: installation test
Browse files Browse the repository at this point in the history
  • Loading branch information
dvilelaf committed Jun 20, 2024
1 parent f7fc8c6 commit 5be63bf
Showing 1 changed file with 26 additions and 8 deletions.
34 changes: 26 additions & 8 deletions .github/workflows/e2e.yml
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

0 comments on commit 5be63bf

Please sign in to comment.