Skip to content

feat: add upload to pinnata function (#117) #269

feat: add upload to pinnata function (#117)

feat: add upload to pinnata function (#117) #269

Workflow file for this run

name: SDK Tests
on:
push:
branches:
- main
- develop
pull_request:
paths:
- 'sdk/**'
- '.github/workflows/sdk-*.yml'
workflow_dispatch:
workflow_call:
jobs:
formatting-linting:
uses: ./.github/workflows/formatting-linting.yml
tests:
runs-on: 'ubuntu-latest'
secrets:

Check failure on line 20 in .github/workflows/sdk-tests.yml

View workflow run for this annotation

GitHub Actions / SDK Tests

Invalid workflow file

The workflow is not valid. .github/workflows/sdk-tests.yml (Line: 20, Col: 5): Unexpected value 'secrets'
PUB_PINATA_JWT: ${{ secrets.PUB_PINATA_JWT }}
defaults:
run:
working-directory: sdk
steps:
- name: 'Check out the repo'
uses: 'actions/checkout@v3'
- name: 'Install Node.js'
uses: 'actions/setup-node@v3'
with:
cache: 'yarn'
node-version: 18
- name: 'Install the dependencies'
run: 'yarn install --frozen-lockfile'
- name: 'Build the sdk'
run: 'yarn build'
- name: 'Test the sdk'
run: 'yarn test >> $GITHUB_STEP_SUMMARY'