From 97a3142734bdf1e3620467d4f17cc594994ad1e9 Mon Sep 17 00:00:00 2001 From: angrybayblade Date: Wed, 5 Jun 2024 11:25:17 +0530 Subject: [PATCH] chore: add e2e test workflow --- .github/workflows/e2e.yml | 28 ++++++++++++++++++++++++++++ 1 file changed, 28 insertions(+) create mode 100644 .github/workflows/e2e.yml diff --git a/.github/workflows/e2e.yml b/.github/workflows/e2e.yml new file mode 100644 index 000000000..9c4d1d6a4 --- /dev/null +++ b/.github/workflows/e2e.yml @@ -0,0 +1,28 @@ +name: "Test Operate Installation E2E" +on: + push: + branches: + - develop + - main + pull_request: +jobs: + linter_checks: + continue-on-error: False + runs-on: ${{ matrix.os }} + strategy: + matrix: + os: [mac-12] + python-version: ["3.10.9"] + timeout-minutes: 30 + steps: + - uses: actions/checkout@v2 + - name: Setup Node.js + uses: actions/setup-node@v3 + with: + node-version: "20.11" + - name: Install dependencies + run: | + npm install + - name: Security checks + run: | + node electron/test.js