Skip to content

fix: upgrade pnpm

fix: upgrade pnpm #783

Workflow file for this run

name: Filecoin API
env:
CI: true
FORCE_COLOR: 1
on:
workflow_dispatch:
push:
branches:
- main
paths:
- 'packages/filecoin-api/**'
- 'packages/eslint-config-w3up/**'
- '.github/workflows/filecoin-api.yml'
- 'pnpm-lock.yaml'
- '.env.tpl'
pull_request:
paths:
- 'packages/filecoin-api/**'
- 'packages/eslint-config-w3up/**'
- '.github/workflows/filecoin-api.yml'
- 'pnpm-lock.yaml'
- '.env.tpl'
jobs:
test:
name: Test
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Install
uses: pnpm/action-setup@v4
with:
version: 9
- name: Setup
uses: actions/setup-node@v3
with:
node-version: 18
registry-url: https://registry.npmjs.org/
cache: 'pnpm'
- name: Build
run: |
pnpm install
pnpm run --if-present build
- name: Lint
run: pnpm -r --filter @web3-storage/filecoin-api run lint
- name: Test
run: pnpm -r --filter @web3-storage/filecoin-api run test