fix: check for blob/accept receipts before blob/add is concluded #578
Workflow file for this run
This file contains 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: Filecoin Client | |
env: | |
CI: true | |
FORCE_COLOR: 1 | |
on: | |
push: | |
branches: | |
- main | |
paths: | |
- 'packages/filecoin-client/**' | |
- 'packages/eslint-config-w3up/**' | |
- '.github/workflows/filecoin-client.yml' | |
- 'pnpm-lock.yaml' | |
pull_request: | |
paths: | |
- 'packages/filecoin-client/**' | |
- 'packages/eslint-config-w3up/**' | |
- '.github/workflows/filecoin-client.yml' | |
- 'pnpm-lock.yaml' | |
jobs: | |
test: | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
node_version: | |
- 18 | |
- 20 | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: pnpm/[email protected] | |
with: | |
version: 8 | |
- uses: actions/setup-node@v3 | |
with: | |
node-version: ${{ matrix.node_version }} | |
cache: 'pnpm' | |
- run: pnpm install | |
- run: pnpm run build | |
- run: pnpm -r --filter @web3-storage/filecoin-client run lint | |
- run: pnpm -r --filter @web3-storage/filecoin-client run test | |
- run: pnpm -r --filter @web3-storage/filecoin-client run attw |