Crosschain enhanced: Arbitrum mainnet + util (getDepositStatus) (#825) #117
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: NPM Typescript | |
on: | |
push: | |
branches: | |
- main | |
paths: | |
- "typescript/**" | |
workflow_dispatch: | |
jobs: | |
npm-compile-publish: | |
runs-on: ubuntu-latest | |
defaults: | |
run: | |
working-directory: ./typescript | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: actions/setup-node@v3 | |
with: | |
node-version: "18.x" | |
registry-url: "https://registry.npmjs.org" | |
cache: "yarn" | |
cache-dependency-path: typescript/yarn.lock | |
# We need this step because the `@keep-network/tbtc-v2` which we update in | |
# next step has an indirect dependency to `@summa-tx/[email protected]` | |
# package, which downloads one of its sub-dependencies via unathenticated | |
# `git://` protocol. That protocol is no longer supported. Thanks to this | |
# step `https://` is used instead of `git://`. | |
- name: Configure git to don't use unauthenticated protocol | |
run: git config --global url."https://".insteadOf git:// | |
- name: Resolve latest contracts | |
run: | | |
yarn upgrade --exact \ | |
@keep-network/ecdsa \ | |
@keep-network/tbtc-v2 | |
- name: Compile | |
run: yarn build | |
- name: Bump up package version | |
id: npm-version-bump | |
uses: keep-network/npm-version-bump@v2 | |
with: | |
work-dir: ./typescript | |
environment: dev | |
branch: ${{ github.ref }} | |
commit: ${{ github.sha }} | |
- name: Publish package | |
env: | |
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }} | |
run: npm publish --access=public --tag=development |