Remove the ropm step, devs just need to do this manually (#310) #832
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: build | |
on: | |
push: | |
branches: | |
- master | |
tags: | |
- v* | |
pull_request: | |
jobs: | |
ci: | |
runs-on: ${{ matrix.os }} | |
env: | |
#hardcode the coveralls token...it's not overly important to protect, and github actions won't allow forks to work with coveralls otherwise | |
COVERALLS_REPO_TOKEN: "ppWEadjj41ovqxQn4LelJ0TAtCKuMNDaH" | |
strategy: | |
matrix: | |
os: [macos-latest, ubuntu-latest, windows-latest] | |
steps: | |
- uses: actions/checkout@master | |
- uses: actions/setup-node@master | |
with: | |
node-version: "16.20.2" | |
architecture: 'x64' # fix for macos-latest | |
- run: cd bsc-plugin && npm install | |
- run: cd bsc-plugin && npx ropm copy | |
- run: cd bsc-plugin && npm run preversion | |
- run: cd bsc-plugin && npm run publish-coverage | |
- run: cd tests && npm install && npm run build |