feat(filecoin-api): allow custom hashing function to be passed to aggregate builder #1746
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: Access Client | |
env: | |
CI: true | |
FORCE_COLOR: 1 | |
on: | |
push: | |
branches: | |
- main | |
paths: | |
- 'packages/access-client/**' | |
- 'packages/eslint-config-w3up/**' | |
- '.github/workflows/access-client.yml' | |
- 'pnpm-lock.yaml' | |
pull_request: | |
paths: | |
- 'packages/access-client/**' | |
- 'packages/eslint-config-w3up/**' | |
- '.github/workflows/access-client.yml' | |
- 'pnpm-lock.yaml' | |
jobs: | |
test: | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
node_version: | |
- 18 | |
- 20 | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: pnpm/action-setup@v4 | |
- 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/access run lint | |
- run: pnpm -r --filter @web3-storage/access run test | |
- run: pnpm -r --filter @web3-storage/access exec depcheck | |
- run: pnpm --filter '@web3-storage/access' attw |