Add parsing to auto add / for MFS paths (#10) #114
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: Build SDK and Test | |
on: [push] | |
jobs: | |
test: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Use Node.js | |
uses: actions/setup-node@v3 | |
with: | |
node-version: '20.x' | |
- run: yarn install --frozen-lockfile | |
- run: yarn run build | |
- run: node --test --test-concurrency 1 | |
env: | |
TEST_KEY: ${{ secrets.TEST_S3_KEY }} | |
TEST_SECRET: ${{ secrets.TEST_S3_SECRET }} | |
TEST_IPFS_GATEWAY: ${{ vars.TEST_IPFS_GATEWAY }} | |
TEST_IPNS_PRIVATE_KEY: ${{ secrets.TEST_IPNS_PRIVATE_KEY }} | |
TEST_NAME_CID: ${{ vars.TEST_NAME_CID }} |