Skip to content

chore: release 0.5.1 #53

chore: release 0.5.1

chore: release 0.5.1 #53

Workflow file for this run

name: Build SDK
on:
pull_request:
push: { branches: main }
env:
NPM_TOKEN: ${{secrets.NPM_TOKEN}}
jobs:
build:
name: Build
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Cache Modules
id: cache-modules
uses: actions/cache@v1
with:
path: node_modules
key: ${{ matrix.node-version }}-${{ runner.OS }}-build-${{ hashFiles('package.json') }}
- name: Setup Node
uses: actions/setup-node@v3
with:
node-version: 16
- name: Install
if: steps.cache-modules.outputs.cache-hit != 'true'
run: yarn
- name: Build
run: yarn build