Skip to content

Commit

Permalink
bump jest and fix integration test (#55)
Browse files Browse the repository at this point in the history
  • Loading branch information
davidgamero committed Jun 21, 2022
1 parent 0939291 commit d893f27
Show file tree
Hide file tree
Showing 4 changed files with 350 additions and 2,911 deletions.
22 changes: 11 additions & 11 deletions .github/workflows/integration-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,13 +3,13 @@ on: # rebuild any PRs and main branch changes
pull_request:
branches:
- main
- 'releases/*'
- "releases/*"
push:
branches:
- main
- 'releases/*'
- "releases/*"

jobs:
jobs:
run-integration-test:
name: Validate release and master branch
runs-on: ubuntu-latest
Expand All @@ -19,7 +19,7 @@ jobs:
steps:
- uses: actions/checkout@v2
name: Checkout from PR branch

- id: action-npm-build
name: npm install and build
run: |
Expand All @@ -28,22 +28,22 @@ jobs:
npm install
npm run build
fi
- uses: actions/setup-python@v2
name: Install Python
with:
python-version: '3.x'
python-version: "3.x"

- name: Install requests library
run: pip install requests

- name: Validate kubectl setup
run: python test/validate-kubectl.py latest
run: python test/validate-kubectl.py !v1.15.1

- name: Setup kubectl
uses: ./
with:
version: 'v1.15.1'
with:
version: "v1.15.1"

- name: Validate kubectl setup
run: python test/validate-kubectl.py 'v1.15.1'
run: python test/validate-kubectl.py 'v1.15.1'
Loading

0 comments on commit d893f27

Please sign in to comment.