chore(main): release upload-client 17.1.0 #1629
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: Upload Client | |
env: | |
CI: true | |
FORCE_COLOR: 1 | |
on: | |
push: | |
branches: | |
- main | |
paths: | |
- 'packages/upload-client/**' | |
- 'packages/eslint-config-w3up/**' | |
- '.github/workflows/client.yml' | |
- 'pnpm-lock.yaml' | |
pull_request: | |
paths: | |
- 'packages/upload-client/**' | |
- 'packages/eslint-config-w3up/**' | |
- '.github/workflows/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/upload-client run lint | |
- run: pnpm -r --filter @web3-storage/upload-client run test | |
- run: pnpm -r --filter @web3-storage/upload-client exec depcheck |