fix: check for blob/accept receipts before blob/add is concluded #723
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: did-mailto | |
on: | |
push: | |
branches: | |
- main | |
paths: | |
- 'packages/did-mailto/**' | |
- 'packages/eslint-config-w3up/**' | |
- '.github/workflows/did-mailto.yml' | |
- 'pnpm-lock.yaml' | |
pull_request: | |
paths: | |
- 'packages/did-mailto/**' | |
- 'packages/eslint-config-w3up/**' | |
- '.github/workflows/did-mailto.yml' | |
- 'pnpm-lock.yaml' | |
jobs: | |
test: | |
name: Test | |
runs-on: ubuntu-latest | |
defaults: | |
run: | |
working-directory: ./packages/did-mailto | |
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' | |
- run: pnpm --filter '@web3-storage/did-mailto...' install | |
- run: pnpm --filter '@web3-storage/did-mailto' lint | |
- run: pnpm --filter '@web3-storage/did-mailto' test |