Skip to content

fix(core): fix error handling in network (#113) #43

fix(core): fix error handling in network (#113)

fix(core): fix error handling in network (#113) #43

Workflow file for this run

name: Publish
on:
push:
branches:
- main
jobs:
publish:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Setup Node
uses: actions/setup-node@v3
with:
node-version: 18
- name: Install
run: yarn
- name: Build
run: yarn build
- name: Set npm token
run: |
echo "//registry.npmjs.org/:_authToken=${{ secrets.NPM_TOKEN }}" > ~/.npmrc
- name: Publish packages
run: yarn pub