Skip to content

feat: add call to marketplaceAPI instead of Transak for order status #1056

feat: add call to marketplaceAPI instead of Transak for order status

feat: add call to marketplaceAPI instead of Transak for order status #1056

name: build-test-publish
on: [push]
jobs:
build-test-publish:
name: Build and Test
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: '18'
- name: Install dependencies
run: npm ci --legacy-peer-deps #TODO: remove this flag once we get rid of tslint
- name: Build
run: npm run build
- name: Test
run: npm test
- name: Publish
if: github.ref == 'refs/heads/master'
env:
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
run: npm run semantic-release