Skip to content

Commit

Permalink
remove incompatible test reporter
Browse files Browse the repository at this point in the history
  • Loading branch information
m4nv3ru committed Apr 16, 2024
1 parent 81d184f commit fcc59b9
Showing 1 changed file with 0 additions and 38 deletions.
38 changes: 0 additions & 38 deletions .github/workflows/frontend_ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,46 +21,8 @@ jobs:
- uses: actions/checkout@v4
- name: Run Tests
run: docker-compose -f docker-compose.yaml run test
- name: Publish Unit Test Results
uses: EnricoMi/publish-unit-test-result-action@v2
if: always()
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
files: |
frontend/vue-gewoscout/test-results/*.json
- name: TearDown docker compose
run: docker-compose down --remove-orphans

- name: Login to the Container registry
uses: docker/login-action@f054a8b539a109f9f41c372932f1ae047eff08c9
with:
registry: ${{ env.REGISTRY }}
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}

- name: Extract metadata (tags, labels) for Docker
id: meta
uses: docker/metadata-action@98669ae865ea3cffbcbaa878cf57c20bbf1c6c38
with:
images: ${{ env.REGISTRY }}/${{ env.IMAGE_NAME }}
tags: |
type=ref,event=branch
type=ref,event=tag
type=ref,event=pr
type=match,pattern=\d.\d.\d.*
type=sha
- name: Build an image from Dockerfile
run: |
docker build -t ${{ env.REGISTRY }}/${{ env.IMAGE_NAME }}:${{ github.sha }} -f Dockerfile1 .
- name: Run Trivy vulnerability scanner
uses: aquasecurity/trivy-action@master
with:
image-ref: '${{ env.REGISTRY }}/${{ env.IMAGE_NAME }}:${{ github.sha }}'
#format: 'sarif'
format: 'table'
output: 'stdout'
#output: 'trivy-results.sarif'


0 comments on commit fcc59b9

Please sign in to comment.