Skip to content

Commit

Permalink
chore: list files before running tests
Browse files Browse the repository at this point in the history
  • Loading branch information
galargh committed Dec 27, 2024
1 parent 8c480a5 commit 5fd0ad7
Showing 1 changed file with 6 additions and 4 deletions.
10 changes: 6 additions & 4 deletions .github/workflows/v-next-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,10 @@ concurrency:
group: ${{github.workflow}}-${{github.ref}}
cancel-in-progress: true

defaults:
run:
shell: bash

jobs:
is-v-next:
runs-on: ubuntu-latest
Expand Down Expand Up @@ -168,11 +172,9 @@ jobs:
if [[ "$result" == "failure" ]]; then
exit 1
fi
shell: bash
- uses: actions/download-artifact@v4
- id: download
run: ls -1 | wc -l | xargs -I {} -0 echo "count={}" | tee -a $GITHUB_OUTPUT
shell: bash
- id: comment
if: steps.download.outputs.count != '0'
run: |
Expand Down Expand Up @@ -244,7 +246,6 @@ jobs:
if [[ "$result" == "failure" ]]; then
exit 1
fi
shell: bash
ci:
needs: list-packages
Expand Down Expand Up @@ -273,6 +274,8 @@ jobs:
run: pnpm install --frozen-lockfile --prefer-offline
- name: Build
run: pnpm build
- name: List files
run: ls -laR
- name: Run tests
env:
__DO_NOT_USE_IS_HARDHAT_CI: true
Expand All @@ -293,4 +296,3 @@ jobs:
if [[ "$result" == "failure" ]]; then
exit 1
fi
shell: bash

0 comments on commit 5fd0ad7

Please sign in to comment.