Bump json5 from 1.0.1 to 1.0.2 in /FlinkSqlGateway #1206
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: K8s tests | |
on: | |
push: | |
branches: [ main ] | |
pull_request: | |
branches: [ main ] | |
workflow_call: | |
env: | |
SELF_HOSTED_RUNNER: true | |
jobs: | |
build: | |
runs-on: private | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Prepare K3d cluster | |
run: | | |
if [ -z "${SELF_HOSTED_RUNNER}" ]; then | |
( cd ./test && bash ./prepare-platform.sh ) | |
else | |
( cd ./test && bash ./prepare-platform-for-self-hosted-runner.sh ) | |
fi | |
- name: Prepare Bats framework | |
run: | | |
cd ./test/bats | |
bash ./prepare-test.sh | |
bats linting.bats | |
shellcheck *.sh *.bats test-*/*.bats | |
- name: Build Platform locally | |
run: | | |
cd test && bash build-local-platform.sh | |
- name: Install from local registry | |
run: cd test && bash install-local-platform.sh | |
- name: Run all e2e tests | |
run: | | |
cd ./test/bats | |
bats */*.bats | |