Bump protobufjs from 7.2.3 to 7.2.5 #1092
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: Test GA build | |
on: | |
push: | |
pull_request: | |
branches: | |
- master | |
jobs: | |
test: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- run: yarn install | |
- run: yarn build | |
# Simulate Github Actions run on an actual DAppNode package | |
- name: Setup a mock package to test locally | |
run: node dist/dappnodesdk.js init --yes --force | |
- run: node dist/dappnodesdk.js github-action build | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
PINATA_API_KEY: ${{ secrets.PINATA_API_KEY }} | |
PINATA_SECRET_API_KEY: ${{ secrets.PINATA_SECRET_API_KEY }} |