Skip to content

Commit

Permalink
fix(docker): missing monorepo packages
Browse files Browse the repository at this point in the history
  • Loading branch information
douglasduteil committed Nov 18, 2024
1 parent 814f43e commit cc0a8f6
Showing 1 changed file with 18 additions and 0 deletions.
18 changes: 18 additions & 0 deletions .github/workflows/docker.yml
Original file line number Diff line number Diff line change
Expand Up @@ -41,3 +41,21 @@ jobs:
cache-to: type=registry,ref=ghcr.io/${{ github.repository }}:buildcache,mode=max
build-args: |
SOURCE_COMMIT=${{ github.sha }}
integration_test:
name: 🚥 Itegration test
needs:
- Build
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4

- name: Install Container Structure Test
run: |
curl -LO https://storage.googleapis.com/container-structure-test/latest/container-structure-test-linux-amd64
chmod +x container-structure-test-linux-amd64
sudo mv container-structure-test-linux-amd64 /usr/local/bin/container-structure-test
- name: 🚥 Run Container Tests
run: |
container-structure-test test --image ghcr.io/${{ github.repository }}:sha-${{ github.sha }} --config container-structure-test.yml

0 comments on commit cc0a8f6

Please sign in to comment.