Bump protobufjs from 7.2.3 to 7.2.5 #345
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 tests end to end | |
on: | |
push: | |
pull_request: | |
branches: | |
- master | |
env: | |
ENVIRONMENT: TEST | |
jobs: | |
test: | |
# to be run on self-hosted runner | |
runs-on: packages | |
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 end to end tests | |
- name: Run end to end tests | |
run: node dist/dappnodesdk.js github-action test-end-to-end --errorLogsTimeout 30 --network prater |