feat: compact data-set list output #433
Workflow file for this run
This file contains hidden or 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: Test upload action | |
| on: | |
| pull_request: | |
| push: | |
| branches: | |
| - master | |
| concurrency: | |
| group: upload-action-${{ github.event.pull_request.number || github.sha }} | |
| cancel-in-progress: true | |
| # Intentionally not using a `matrix` for the `dry-run` and `upload` jobs. | |
| # They are nearly identical — the only meaningful difference is `dryRun` — | |
| # but inlining keeps the workflow easier to read at a glance. | |
| jobs: | |
| dry-run: | |
| runs-on: ubuntu-latest | |
| # Successful dry-run jobs finish in under a minute. Cap well above that so | |
| # a stalled setup/install step fails fast instead of riding the default 6h limit. | |
| timeout-minutes: 10 | |
| # Always run on `push` (i.e. master commits) to build default-branch | |
| # history. For `pull_request` events keep the fork guard. | |
| # TODO: drop the fork guard once the action no longer exits early with | |
| # `fork-pr-blocked` when `dryRun: true`. Until then, running on forks | |
| # produces a misleading "skipped" check rather than real coverage. | |
| if: github.event_name == 'push' || github.event.pull_request.head.repo.full_name == github.repository | |
| permissions: | |
| contents: read | |
| checks: write | |
| steps: | |
| - name: Checkout code | |
| uses: actions/checkout@v6.0.2 | |
| - name: Create upload fixture | |
| run: | | |
| mkdir -p .filecoin-pin-upload-fixture | |
| printf 'filecoin-pin upload action smoke test\n' > .filecoin-pin-upload-fixture/content.txt | |
| - name: Upload to Filecoin | |
| uses: ./upload-action | |
| env: | |
| LOG_LEVEL: warn | |
| with: | |
| path: ./.filecoin-pin-upload-fixture | |
| network: calibration | |
| dryRun: true | |
| upload: | |
| runs-on: ubuntu-latest | |
| # Successful upload jobs finish in roughly 2-3 minutes, including the real | |
| # Calibration on-chain work. Cap with headroom for a slow provider/chain so | |
| # a stalled setup/install step fails fast instead of riding the default 6h limit. | |
| timeout-minutes: 15 | |
| # Always run on `push` (master commits); guard forks on `pull_request`. | |
| if: github.event_name == 'push' || github.event.pull_request.head.repo.full_name == github.repository | |
| permissions: | |
| contents: read | |
| checks: write | |
| steps: | |
| - name: Checkout code | |
| uses: actions/checkout@v6.0.2 | |
| - name: Create upload fixture | |
| run: | | |
| mkdir -p .filecoin-pin-upload-fixture | |
| printf 'filecoin-pin upload action smoke test\n' > .filecoin-pin-upload-fixture/content.txt | |
| - name: Upload to Filecoin | |
| uses: ./upload-action | |
| env: | |
| LOG_LEVEL: warn | |
| PROVIDER_IDS: "2" | |
| with: | |
| path: ./.filecoin-pin-upload-fixture | |
| # WALLET_PRIVATE_KEY backs the Calibration upload-action wallet. | |
| # Public address: 0x44f08D1beFe61255b3C3A349C392C560FA333759 | |
| # 1Password: "filecoin-pin / filecoin-pin-website /upload-action Wallet" | |
| walletPrivateKey: ${{ secrets.WALLET_PRIVATE_KEY }} | |
| network: calibration | |
| maxBalance: "5" | |
| dryRun: false |