From c5b5a913b84e10f19b59bf150545cf665ee80cc8 Mon Sep 17 00:00:00 2001 From: Tim Pietrusky Date: Fri, 26 Apr 2024 15:25:08 +0200 Subject: [PATCH] chore: get rid of tests as we don't need them here --- .github/workflows/test-client.yml | 24 ------------------------ .github/workflows/test-e2e.yml | 29 ----------------------------- .github/workflows/test-electron.yml | 24 ------------------------ .github/workflows/test-shared.yml | 24 ------------------------ 4 files changed, 101 deletions(-) delete mode 100644 .github/workflows/test-client.yml delete mode 100644 .github/workflows/test-e2e.yml delete mode 100644 .github/workflows/test-electron.yml delete mode 100644 .github/workflows/test-shared.yml diff --git a/.github/workflows/test-client.yml b/.github/workflows/test-client.yml deleted file mode 100644 index e29813202..000000000 --- a/.github/workflows/test-client.yml +++ /dev/null @@ -1,24 +0,0 @@ -name: Client Tests - -on: - push: - branches: [ alpha, beta, rc, main ] - pull_request: - types: [ opened, synchronize ] - branches: [ alpha, beta, rc, main ] - -jobs: - test-client: - runs-on: ubuntu-latest - concurrency: - group: ${{ github.workflow }}-${{ github.ref }} - cancel-in-progress: ${{ github.ref != 'refs/heads/main' }} - steps: - - uses: actions/checkout@v4 - - uses: actions/setup-node@v4 - with: - node-version-file: '.nvmrc' - - name: Install dependencies - run: npm install - - name: Run Client tests - run: npm run test:client diff --git a/.github/workflows/test-e2e.yml b/.github/workflows/test-e2e.yml deleted file mode 100644 index fb19ae8df..000000000 --- a/.github/workflows/test-e2e.yml +++ /dev/null @@ -1,29 +0,0 @@ -name: e2e Tests - -on: - push: - branches: [alpha, beta, rc, main] - pull_request: - types: [opened, synchronize] - branches: [alpha, beta, rc, main] - -jobs: - test-e2e: - runs-on: windows-latest - concurrency: - group: ${{ github.workflow }}-${{ github.ref }} - cancel-in-progress: ${{ github.ref != 'refs/heads/main' }} - steps: - - uses: actions/checkout@v4 - - uses: actions/setup-node@v4 - with: - node-version-file: '.nvmrc' - - - name: Install dependencies - run: npm install - - - name: Fix auto-fixable eslint issues - run: npm run eslint -- --fix - - - name: Run e2e tests - run: npm run test:e2e diff --git a/.github/workflows/test-electron.yml b/.github/workflows/test-electron.yml deleted file mode 100644 index 8c7232835..000000000 --- a/.github/workflows/test-electron.yml +++ /dev/null @@ -1,24 +0,0 @@ -name: Electron Tests - -on: - push: - branches: [ alpha, beta, rc, main ] - pull_request: - types: [opened, synchronize] - branches: [ alpha, beta, rc, main ] - -jobs: - test-electron: - runs-on: ubuntu-latest - concurrency: - group: ${{ github.workflow }}-${{ github.ref }} - cancel-in-progress: ${{ github.ref != 'refs/heads/main' }} - steps: - - uses: actions/checkout@v4 - - uses: actions/setup-node@v4 - with: - node-version-file: '.nvmrc' - - name: Install dependencies - run: npm install - - name: Run Electron tests - run: npm run test:electron diff --git a/.github/workflows/test-shared.yml b/.github/workflows/test-shared.yml deleted file mode 100644 index 9c0dcbe3d..000000000 --- a/.github/workflows/test-shared.yml +++ /dev/null @@ -1,24 +0,0 @@ -name: Shared Tests - -on: - push: - branches: [ alpha, beta, rc, main ] - pull_request: - types: [ opened, synchronize ] - branches: [ alpha, beta, rc, main ] - -jobs: - test-shared: - runs-on: ubuntu-latest - concurrency: - group: ${{ github.workflow }}-${{ github.ref }} - cancel-in-progress: ${{ github.ref != 'refs/heads/main' }} - steps: - - uses: actions/checkout@v4 - - uses: actions/setup-node@v4 - with: - node-version-file: '.nvmrc' - - name: Install dependencies - run: npm install - - name: Run Shared tests - run: npm run test:shared