fix: stop writing to DUDEWHERE #772
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 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/[email protected] | |
with: | |
version: 8 | |
- 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 |