chore: bump massa-web3 and add balanceOf method to account objects (#… #134
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 dev publish | |
on: | |
push: | |
branches: [ main ] | |
jobs: | |
test: | |
uses: ./.github/workflows/massaStation-e2e-tests.yml | |
secrets: inherit | |
publish-npm-dev: | |
runs-on: ubuntu-latest | |
needs: test | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v3 | |
- name: Use Node.js | |
uses: actions/setup-node@v3 | |
with: | |
node-version: 18 | |
registry-url: https://registry.npmjs.org | |
cache: 'npm' | |
- name: Publish dev version to npm | |
run: ./scripts/publish-dev.sh | |
env: | |
NODE_AUTH_TOKEN: ${{ secrets.npm_token }} |