Skip to content

Commit

Permalink
Fix
Browse files Browse the repository at this point in the history
Signed-off-by: Anatolii Bazko <[email protected]>
  • Loading branch information
tolusha committed Feb 5, 2025
1 parent 7df6404 commit 673d465
Show file tree
Hide file tree
Showing 2 changed files with 44 additions and 29 deletions.
42 changes: 42 additions & 0 deletions .github/workflows/minikube-chectl-deploy-test.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,42 @@
#
# Copyright (c) 2019-2023 Red Hat, Inc.
# This program and the accompanying materials are made
# available under the terms of the Eclipse Public License 2.0
# which is available at https://www.eclipse.org/legal/epl-2.0/
#
# SPDX-License-Identifier: EPL-2.0
#
# Contributors:
# Red Hat, Inc. - initial API and implementation
#

name: Commands tests
on: pull_request
jobs:
chectl-deploy-test:
runs-on: ubuntu-22.04
steps:
- name: Checkout
uses: actions/checkout@v3
with:
fetch-depth: 0
persist-credentials: false
- name: Start minikube cluster
uses: che-incubator/setup-minikube-action@next
with:
minikube-version: v1.29.0
- name: Install NodeJS
uses: actions/setup-node@v3
with:
node-version: 18.18.0
- name: Build chectl
run: yarn
- name: Run e2e tests
run: |
export PLATFORM=minikube
yarn test --coverage=false --forceExit --testRegex=test/e2e/e2e.test.ts
- uses: actions/upload-artifact@v4
if: ${{ always() }}
with:
name: test-artifacts
path: /tmp/logs/*
Original file line number Diff line number Diff line change
Expand Up @@ -13,34 +13,7 @@
name: Commands tests
on: pull_request
jobs:
chectl-deploy-commands:
runs-on: ubuntu-22.04
steps:
- name: Checkout
uses: actions/checkout@v3
with:
fetch-depth: 0
persist-credentials: false
- name: Start minikube cluster
uses: che-incubator/setup-minikube-action@next
with:
minikube-version: v1.29.0
- name: Install NodeJS
uses: actions/setup-node@v3
with:
node-version: 18.18.0
- name: Build chectl
run: yarn
- name: Run e2e tests
run: |
export PLATFORM=minikube
yarn test --coverage=false --forceExit --testRegex=test/e2e/e2e.test.ts
- uses: actions/upload-artifact@v4
if: ${{ always() }}
with:
name: test-artifacts-deploy
path: /tmp/logs/*
chectl-update-commands:
chectl-update-test:
runs-on: ubuntu-22.04
steps:
- name: Checkout
Expand All @@ -67,5 +40,5 @@ jobs:
- uses: actions/upload-artifact@v4
if: ${{ always() }}
with:
name: test-artifacts-update
name: test-artifacts
path: /tmp/logs/*

0 comments on commit 673d465

Please sign in to comment.