docs(pinning): recursive DAG pinning + standard REST API + CAR import #145
Workflow file for this run
This file contains hidden or 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: Test build on Pull Request | |
| on: | |
| pull_request: | |
| branches: | |
| - '**' | |
| jobs: | |
| deploy: | |
| name: Test build on PR | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - uses: actions/setup-node@v4 | |
| with: | |
| node-version: 18.x | |
| cache: yarn | |
| - name: Test build | |
| run: | | |
| yarn install --frozen-lockfile | |
| yarn build |