Add github action with e2e tests #4
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: E2E tests | |
on: | |
pull_request: | |
workflow_dispatch: | |
inputs: | |
uninstall_fm: | |
description: 'Option to uninstall Frinx-machine' | |
required: true | |
default: 'true' | |
host: | |
description: 'frinx-machine helm-chart branch' | |
required: true | |
default: 'main' | |
jobs: | |
trigger-e2e-tests: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
# - name: Set short git commit SHA | |
# id: vars | |
# run: | | |
# calculatedSha=$(git rev-parse --short HEAD) | |
# echo "::set-output name=short_sha::$calculatedSha" | |
- name: Save sha | |
id: sha | |
run: | | |
calculatedSha=$(git rev-parse --short HEAD) | |
echo "short_sha=$calculatedSha" >> $GITHUB_OUTPUT | |
- name: Confirm git commit SHA output | |
run: echo ${{ steps.sha.outputs.short_sha }} | |
# - name: Login to DockerHub | |
# uses: docker/login-action@v2 | |
# with: | |
# username: ${{ secrets.DOCKER_HUB_USERNAME }} | |
# password: ${{ secrets.DOCKER_HUB_PASSWORD }} | |
# - name: Setup Docker Buildx | |
# uses: docker/setup-buildx-action@v2 | |
# - name: Build and push latest | |
# id: docker_build | |
# env: | |
# TAG: $(git rev-parse --short HEAD) | |
# uses: docker/build-push-action@v4 | |
# with: | |
# push: true | |
# tags: | | |
# frinx/frinx-frontend:${{ env.TAG }} | |
# build-args: | | |
# COMMIT_HASH=${{ github.sha }} | |
# PRIVATE_GH_TOKEN=${{ secrets.PACKAGE_TOKEN }} | |
# PRIVATE_NPM_TOKEN=${{ secrets.PUBLISH_TOKEN }} |