Skip to content

Commit

Permalink
Re-include artifacts check in CI
Browse files Browse the repository at this point in the history
Was removed in 4949072.
  • Loading branch information
williamthome committed Aug 9, 2024
1 parent dfd969e commit 9ae7306
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -104,3 +104,11 @@ jobs:
# Step: Execute the tests.
- name: Run tests
run: mix test

# Step: Check deps.
- name: Check if build left artifacts
if: ${{env.MIX_ENV != 'polyfill'}}
run: |
mix deps.clean --all --only test
mix deps.update --all --only test
git diff --exit-code

0 comments on commit 9ae7306

Please sign in to comment.